-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
54 lines (47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "vpxtool"
version = "0.1.0"
edition = "2021"
rust-version = "1.71.1"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "vpxtool"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.22.1"
#see https://github.com/chronotope/chrono/issues/602#issuecomment-1242149249
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
clap = { version = "4.5.20", features = ["derive", "string"] }
colored = "2.1.0"
console = "0.15.8"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
dirs = "5.0.1"
git-version = "0.3.9"
indicatif = "0.17.8"
log = "0.4.22"
logging_timer = "1.1.1"
pretty_env_logger = "0.5.0"
quick-xml = { version = "0.37.0", features = ["serialize"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = { version = "1.0.132", features = ["preserve_order"] }
shellexpand = "3.1.0"
walkdir = "2.5.0"
wild = "2.2.1"
figment = { version = "0.10", features = ["toml", "env"] }
toml = "0.8.19"
is_executable = "1.0.4"
regex = { version = "1.11.1", features = [] }
vpin = { version = "0.16.1" }
rust-ini = "0.21.1"
edit = "0.1.5"
jojodiff = "0.1.2"
[dev-dependencies]
pretty_assertions = "1.4.1"
rand = "0.8.5"
testdir = "0.9.1"
[profile.test]
# level 0 is very slow for writing to compound files
# see https://github.com/mdsteele/rust-cfb/issues/42
opt-level = 1