-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.03 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
[package]
name = "jardin"
version = "0.1.0"
edition = "2021"
license-file = "./LICENSES/AGPL-3.0-or-later.txt"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0"
regex = "1"
log = "0.4"
pretty_env_logger = "0.4"
async-trait = "0.1.52"
tokio = { version = "1", features = ["full"] }
# TODO: use clap_mangen to generate manual pages
clap_mangen = "0.2.11"
priority-queue = "1.2.2"
multimap = "0.8.3"
mockall = "0.11.2"
# afl = "0.13.0"
arbitrary = { version = "1.3.0", features = ["derive"] }
cargo-mutants = "23.5"
colored = "2"
nix-uri = "0.1.5"
rnix = "0.11.0"
runix = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["std", "derive"]
[dependencies.confy]
version = "0.5.1"
features = ["toml_conf"]
default-features = false
[dependencies.clap]
version = "4.2.7"
features = ["derive"]
[dependencies.clap_complete]
version = "4.2.3"
[dev-dependencies]
coverage-helper = "0.1"
serde_json = "1.0.96"
fake = { version = "2.6", features=['derive']}
rand = "0.8"