-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 929 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (31 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "pik"
version = "1.0.0"
edition = "2024"
authors = ["Jacek Kurlit"]
keywords = ["terminal", "process", "linux", "system", "kill"]
categories = ["command-line-utilities"]
license-file = "LICENSE"
description = "pik - process interactive kill"
repository = "https://github.com/jacek-kurlit/pik"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ratatui = { version = "0.30", features = ["serde"] }
tui-input = "0.15"
anyhow = "1.0.79"
sysinfo = "0.38.2"
listeners = "0.5.1"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
directories = "6.0"
toml = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_regex = "1.1"
fuzzy-matcher = "0.3.7"
itertools = "0.14"
regex = "1.11"
unicode-width = "0.2"
arboard = { version = "3.6", features = ["wayland-data-control"] }
[dev-dependencies]
http-test-server = "2.1.1"
faux = "0.1"