2023-12-08 15:03:01 +00:00
|
|
|
[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" }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-06-04 17:19:25 +00:00
|
|
|
tower = { workspace = true, features = ["util"] }
|
2024-01-21 14:46:03 +00:00
|
|
|
tokio = { workspace = true, features = ["time", "fs", "rt"]}
|
2024-03-20 20:58:12 +00:00
|
|
|
tokio-util = { workspace = true, features = ["time"] }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
futures = { workspace = true, features = ["std"] }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
2024-03-20 20:58:12 +00:00
|
|
|
indexmap = { workspace = true, features = ["std"] }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
2023-12-08 15:03:01 +00:00
|
|
|
|
2024-01-21 14:46:03 +00:00
|
|
|
borsh = { workspace = true, features = ["derive", "std"]}
|
2023-12-08 15:03:01 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
cuprate-test-utils = {path = "../../test-utils"}
|
2024-01-21 14:46:03 +00:00
|
|
|
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|