-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCargo.toml
65 lines (59 loc) · 1.56 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
59
60
61
62
63
64
65
[package]
authors = ["MaidSafe Developers <[email protected]>"]
name = "ant-cli"
description = "CLI client for the Autonomi network"
license = "GPL-3.0"
version = "0.3.6"
edition = "2021"
homepage = "https://maidsafe.net"
readme = "README.md"
repository = "https://github.com/maidsafe/autonomi"
[[bin]]
name = "ant"
path = "src/main.rs"
[features]
default = ["metrics"]
metrics = ["ant-logging/process-metrics"]
nightly = []
[[bench]]
name = "files"
harness = false
[dependencies]
ant-bootstrap = { path = "../ant-bootstrap", version = "0.1.4" }
ant-build-info = { path = "../ant-build-info", version = "0.1.23" }
ant-logging = { path = "../ant-logging", version = "0.2.45" }
ant-protocol = { path = "../ant-protocol", version = "0.3.3" }
autonomi = { path = "../autonomi", version = "0.3.5", features = [ "loud" ] }
clap = { version = "4.2.1", features = ["derive"] }
color-eyre = "0.6.3"
const-hex = "1.13.1"
dirs-next = "~2.0.0"
hex = "0.4.3"
indicatif = { version = "0.17.5", features = ["tokio"] }
prettytable = "0.10.0"
rand = { version = "~0.8.5", features = ["small_rng"] }
ring = "0.17.8"
rpassword = "7.0"
serde = "1.0.210"
serde_json = "1.0.132"
thiserror = "1.0"
tokio = { version = "1.32.0", features = [
"io-util",
"macros",
"parking_lot",
"rt",
"sync",
"time",
"fs",
] }
tracing = { version = "~0.1.26" }
walkdir = "2.5.0"
[dev-dependencies]
autonomi = { path = "../autonomi", version = "0.3.5" }
criterion = "0.5.1"
eyre = "0.6.8"
rand = { version = "~0.8.5", features = ["small_rng"] }
rayon = "1.8.0"
tempfile = "3.6.0"
[lints]
workspace = true