forked from chmln/handlr
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (59 loc) · 1.78 KB
/
Cargo.toml
File metadata and controls
65 lines (59 loc) · 1.78 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "handlr-regex"
version = "0.13.0"
authors = ["Duncan Russell <Duncan@anomalocaris.xyz>", "Gregory <gregory.mkv@gmail.com>"]
edition = "2021"
license = "MIT"
description = "Fork of handlr with regex support"
repository = "https://github.com/Anomalocaridid/handlr-regex"
[dependencies]
clap = { version = "4.5.2", features = ["derive"] }
url = "2.2.1"
itertools = "0.10.0"
thiserror = "1.0.24"
xdg = "2.2.0"
mime = "0.3.16"
mime-db = "1.3.0"
confy = "0.4.0"
serde = { version = "1.0.125", features = ["derive"] }
xdg-mime = "0.4.0"
tabled = "0.15.0"
serde_json = "1.0"
enum_dispatch = "0.3.13"
derive_more = { version = "0.99.18", default-features = false, features = ["deref", "deref_mut", "display"] }
serde_ini = "0.2.0"
serde_with = "3.8.3"
wildmatch = "2.3.4"
mutants = "0.0.3"
clap_complete = { version = "4.5.33", features = ["unstable-dynamic"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-appender = "0.2.3"
tracing-unwrap = "1.0.1"
clap-verbosity-flag = { version = "3.0.3", default-features = false, features = ["tracing"] }
notify-rust = "4.11.7"
execute = "0.2.13"
lazy-regex = { version = "3.4.1", default-features = false, features = ["lite"] }
freedesktop_entry_parser = "1.3.0"
[[bin]]
name = "handlr"
path = "src/main.rs"
[dev-dependencies]
insta = { version = "1.42.2", features = ["filters"] }
insta-cmd = "0.6.0"
pipe = "0.4.0"
similar-asserts = "1.7.0"
temp-env = "0.3.6"
[build-dependencies]
clap = { version = "4.5.2", features = ["derive"] }
clap_complete = { version = "4.5.33", features = ["unstable-dynamic"] }
clap_mangen = "0.2.20"
clap-verbosity-flag = { version = "3.0.3", default-features = false, features = ["tracing"] }
[profile.release]
opt-level = "z"
lto = true
strip = true
codegen-units = 1
panic = "abort"
[profile.dev.package]
insta.opt-level = 3