-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
59 lines (52 loc) · 1.41 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
53
54
55
56
57
58
59
[package]
name = "tari_p2p"
description = "Tari base layer-specific peer-to-peer communication features"
readme = "README.md"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
license.workspace = true
[dependencies]
tari_comms = { workspace = true }
tari_comms_dht = { workspace = true }
tari_common = { workspace = true }
tari_common_sqlite = { workspace = true }
tari_service_framework = { workspace = true }
tari_shutdown = { workspace = true }
tari_utilities = { workspace = true }
anyhow = "1.0.53"
futures = { version = "^0.3.1" }
log = "0.4.6"
pgp = { version = "0.14.2" }
prost = "0.13.3"
rand = "0.8"
reqwest = { version = "0.11" }
semver = { version = "1.0.1", optional = true }
serde = "1.0.90"
serde_json = "1.0.51"
thiserror = "1.0.26"
tokio = { version = "1.44", features = ["macros"] }
tokio-stream = { version = "0.1.9", default-features = false, features = [
"time",
] }
tower = "0.4.11"
hickory-resolver = { version = "0.26.0-alpha.1", features = [
"tokio",
"tls-ring",
"rustls-platform-verifier",
] }
hickory-proto = { version = "0.26.0-alpha.1" }
[dev-dependencies]
tari_test_utils = { workspace = true }
toml = "0.5.11"
config = "0.14.0"
clap = "3.2"
tempfile = "3.1.0"
[build-dependencies]
tari_common = { workspace = true, features = ["build"] }
[features]
test-mocks = []
auto-update = ["semver"]
[package.metadata.cargo-machete]
ignored = []