mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-17 00:07:53 +00:00
Boog900
e560ecc2ee
* monerod: set a random DB and remove dir when done * add a test for an inbound monerod handshake * don't fail if can't remove dir on windows * Update test-utils/src/monerod.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * use `temp_dir` * use `tempfile` --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "monero-p2p"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
[features]
|
|
default = ["borsh"]
|
|
borsh = ["dep:borsh", "monero-pruning/borsh"]
|
|
|
|
[dependencies]
|
|
cuprate-helper = { path = "../../helper" }
|
|
monero-wire = { path = "../../net/monero-wire" }
|
|
monero-pruning = { path = "../../pruning" }
|
|
|
|
tokio = { workspace = true, features = ["net", "sync", "macros", "time"]}
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tokio-stream = { workspace = true, features = ["sync"]}
|
|
futures = { workspace = true, features = ["std", "async-await"] }
|
|
async-trait = { workspace = true }
|
|
tower = { workspace = true, features = ["util"] }
|
|
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true, features = ["std"] }
|
|
|
|
borsh = { workspace = true, default-features = false, features = ["derive", "std"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = {path = "../../test-utils"}
|
|
|
|
hex = { workspace = true, features = ["std"] }
|
|
tokio = { workspace = true, features = ["net", "rt-multi-thread", "rt", "macros"]}
|
|
tracing-subscriber = { workspace = true }
|