-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
67 lines (65 loc) · 2.01 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
66
67
[package]
edition = "2021"
name = "sha_p2pool"
version = "0.15.4"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.80"
axum = "0.7.7"
blake2 = "0.10.6"
chrono = "0.4.38"
clap = { version = "4.5.7", features = ["derive"] }
convert_case = "0.6.0"
digest = "0.10.7"
dirs = "4.0.0"
hex = "0.4.3"
hickory-resolver = { version = "*", features = ["dns-over-rustls"] }
human_format = "1.1.0"
humantime = "2.1.0"
itertools = "0.13.0"
lazy_static = "1.5.0"
libp2p = { version = "0.54.1", features = [
"dns",
"identify",
"macros",
"tokio",
"serde",
"noise",
"tcp",
"yamux",
"mdns",
"gossipsub",
"request-response",
"json",
"cbor",
"relay",
"dcutr",
"autonat",
"memory-connection-limits",
"rsa",
"ecdsa",
"ping",
"quic",
] }
log = { version = "0.4.21", features = ["kv"] }
log4rs = "1.3.0"
minotari_app_grpc = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
minotari_node_grpc_client = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
num = { version = "0.4.3", features = ["default", "num-bigint", "serde"] }
rand = "0.8.0"
serde = "1.0.203"
serde_cbor = "0.11.2"
serde_json = "1.0.122"
tari_common = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
tari_common_types = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
tari_core = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
tari_crypto = "0.21.0"
tari_script = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
tari_shutdown = { git = "https://github.com/tari-project/tari.git", rev = "d58c67030c3cff20eea6a17883c2a7908dc75ea6" }
tari_utilities = { version = "0.8", features = ["borsh"] }
thiserror = "1.0"
tokio = { version = "1.41.0", features = ["full"] }
tonic = "0.12.3"
lru = "0.12.5"
[package.metadata.cargo-machete]
ignored = ["log4rs"]