cuprate/p2p/address-book/Cargo.toml

32 lines
890 B
TOML
Raw Normal View History

[package]
name = "monero-address-book"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Boog900"]
[dependencies]
2024-01-22 01:56:34 +00:00
monero-pruning = { path = "../../pruning" }
monero-wire = { path= "../../net/monero-wire" }
monero-p2p = { path = "../monero-p2p" }
tower = { workspace = true, features = ["util"] }
2024-01-21 14:46:03 +00:00
tokio = { workspace = true, features = ["time", "fs", "rt"]}
tokio-util = { workspace = true, features = ["time"] }
2024-01-21 14:46:03 +00:00
futures = { workspace = true, features = ["std"] }
2024-01-21 14:46:03 +00:00
thiserror = { workspace = true }
tracing = { workspace = true, features = ["std", "attributes"] }
indexmap = { workspace = true, features = ["std"] }
2024-01-21 14:46:03 +00:00
rand = { workspace = true, features = ["std", "std_rng"] }
2024-01-21 14:46:03 +00:00
borsh = { workspace = true, features = ["derive", "std"]}
[dev-dependencies]
cuprate-test-utils = {path = "../../test-utils"}
2024-01-21 14:46:03 +00:00
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}