cuprate-hinto-janai/p2p/monero-p2p/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "monero-p2p"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Boog900"]
[features]
default = ["borsh"]
2024-01-22 01:56:34 +00:00
borsh = ["dep:borsh", "monero-pruning/borsh"]
[dependencies]
2024-01-22 01:56:34 +00:00
cuprate-helper = { path = "../../helper" }
monero-wire = { path = "../../net/monero-wire", features = ["tracing"] }
2024-01-22 01:56:34 +00:00
monero-pruning = { path = "../../pruning" }
2024-01-22 18:18:15 +00:00
tokio = { workspace = true, features = ["net", "sync", "macros", "time"]}
2024-01-21 14:46:03 +00:00
tokio-util = { workspace = true, features = ["codec"] }
tokio-stream = { workspace = true, features = ["sync"]}
futures = { workspace = true, features = ["std", "async-await"] }
2024-01-21 14:46:03 +00:00
async-trait = { workspace = true }
tower = { workspace = true, features = ["util"] }
2024-01-21 14:46:03 +00:00
thiserror = { workspace = true }
tracing = { workspace = true, features = ["std"] }
2024-01-21 14:46:03 +00:00
borsh = { workspace = true, default-features = false, features = ["derive", "std"], optional = true }
[dev-dependencies]
cuprate-test-utils = {path = "../../test-utils"}
hex = { workspace = true, features = ["std"] }
2024-01-21 14:46:03 +00:00
tokio = { workspace = true, features = ["net", "rt-multi-thread", "rt", "macros"]}
tracing-subscriber = { workspace = true }