forked from chmln/handlr
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
59 lines (53 loc) · 1.46 KB
/
Cargo.toml
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
[package]
name = "handlr-regex"
version = "0.12.0"
authors = ["Duncan Russell <[email protected]>", "Gregory <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Fork of handlr with regex support"
repository = "https://github.com/Anomalocaridid/handlr-regex"
build = "build/main.rs"
[dependencies]
clap = { version = "4.5.2", features = ["derive"] }
url = "2.2.1"
itertools = "0.10.0"
shlex = "1.3.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"
once_cell = "1.7.2"
aho-corasick = "0.7.15"
regex = { version = "1", default-features = false, features = ["std", "unicode-perl"] }
tabled = "0.15.0"
serde_json = "1.0"
serde_regex = "1.1.0"
enum_dispatch = "0.3.13"
freedesktop-desktop-entry = "0.6.1"
derive_more = { version = "0.99.18", default-features = false, features = ["deref", "deref_mut"] }
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"] }
[[bin]]
name = "handlr"
path = "src/main.rs"
[dev-dependencies]
goldie = "0.5.0"
pretty_assertions = "1.4.0"
[build-dependencies]
clap = { version = "4.5.2", features = ["derive"] }
clap_complete = { version = "4.5.33", features = ["unstable-dynamic"] }
clap_mangen = "0.2.20"
mime-db = "1.3.0"
mutants = "0.0.3"
[profile.release]
opt-level = "z"
lto = true
strip = true
codegen-units = 1
panic = "abort"