-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.03 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
[package]
name = "cbp"
version = "0.4.0"
authors = ["wang-q <wang-q@outlook.com>"]
description = "`cbp` is a Binary Package manager"
documentation = "https://github.com/wang-q/cbp"
homepage = "https://github.com/wang-q/cbp"
repository = "https://github.com/wang-q/cbp"
readme = "README.md"
categories = ["command-line-utilities", "science"]
license = "MIT"
edition = "2021"
publish = false
[[bin]]
name = "cbp"
path = "src/cbp.rs"
[dependencies]
clap = { version = "4.4.3", features = ["cargo"] }
anyhow = "1.0.75"
regex = "1.9.5"
flate2 = "1.0.27"
tar = "0.4.40"
dirs = "6.0.0"
dunce = "1.0.5"
tempfile = "3.8.0"
walkdir = "2.5.0"
glob = "0.3.2"
cmd_lib = "1.9.3"
ureq = { version = "2.12.1" , features = ["json", "socks-proxy"]}
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.139"
md-5 = "0.10.6"
jsonschema = "0.17.1"
tera = "1.20"
sysinfo = "0.30"
tracing = "0.1"
tracing-subscriber = "0.3"
[build-dependencies]
[dev-dependencies]
assert_cmd = "2.0.17"
predicates = "3.1.3"
mockito = "1.7.0"
[profile.release]
lto = true