mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-17 16:28:20 +00:00
39 lines
1.3 KiB
TOML
39 lines
1.3 KiB
TOML
|
[package]
|
||
|
name = "cuprate-p2p"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
license = "MIT"
|
||
|
authors = ["Boog900"]
|
||
|
|
||
|
[dependencies]
|
||
|
fixed-bytes = { path = "../../net/fixed-bytes" }
|
||
|
monero-wire = { path = "../../net/monero-wire" }
|
||
|
monero-p2p = { path = "../monero-p2p", features = ["borsh"] }
|
||
|
monero-address-book = { path = "../address-book" }
|
||
|
monero-pruning = { path = "../../pruning" }
|
||
|
cuprate-helper = { path = "../../helper", features = ["asynch"] }
|
||
|
|
||
|
monero-serai = { workspace = true, features = ["std"] }
|
||
|
|
||
|
tower = { workspace = true }
|
||
|
tokio = { workspace = true, features = ["full"] }
|
||
|
rayon = { workspace = true }
|
||
|
tokio-util = { workspace = true }
|
||
|
tokio-stream = { workspace = true, features = ["sync", "time"] }
|
||
|
futures = { workspace = true, features = ["std"] }
|
||
|
pin-project = { workspace = true }
|
||
|
dashmap = { workspace = true }
|
||
|
|
||
|
thiserror = { workspace = true }
|
||
|
bytes = { workspace = true, features = ["std"] }
|
||
|
indexmap = { workspace = true, features = ["std"] }
|
||
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
||
|
rand_distr = { workspace = true, features = ["std"] }
|
||
|
hex = { workspace = true, features = ["std"] }
|
||
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
cuprate-test-utils = {path = "../../test-utils"}
|
||
|
tracing-subscriber = { version = "0.3.18" }
|
||
|
|