-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathCargo.toml
40 lines (39 loc) · 1.39 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
[package]
name = "vdev"
version = "0.1.0"
edition = "2021"
authors = ["Vector Contributors <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
publish = false
[dependencies]
anyhow = "1.0.75"
atty = "0.2.14"
cached = "0.45.1"
chrono = { version = "0.4.22", default-features = false, features = ["serde", "clock"] }
clap = { version = "4.4.2", features = ["derive"] }
clap-verbosity-flag = "2.0.1"
clap_complete = "4.4.1"
confy = "0.5.1"
directories = "5.0.1"
# remove this when stabilized https://doc.rust-lang.org/stable/std/path/fn.absolute.html
dunce = "1.0.4"
glob = { version = "0.3.1", default-features = false }
hex = "0.4.3"
indexmap = { version = "2.0", default-features = false, features = ["serde", "std"] }
indicatif = { version = "0.17.6", features = ["improved_unicode"] }
itertools = "0.11.0"
log = "0.4.20"
once_cell = "1.18"
os_info = { version = "3.7.0", default-features = false }
# watch https://github.com/epage/anstyle for official interop with Clap
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
paste = "1.0.14"
regex = { version = "1.9.5", default-features = false, features = ["std", "perf"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.106"
serde_yaml = "0.9.25"
sha2 = "0.10.7"
tempfile = "3.6.0"
toml = { version = "0.7.8", default-features = false, features = ["parse"] }