mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-09 12:29:45 +00:00
63216aecae
Some checks failed
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
Deny / audit (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Doc / build (push) Has been cancelled
Doc / deploy (push) Has been cancelled
Defines cuprate members as workspace dependencies - Defines cuprate members as workspace dependencies - Changed all `path` import into `workspace = true` Co-authored-by: Boog900 <boog900@tutanota.com>
44 lines
1.5 KiB
TOML
44 lines
1.5 KiB
TOML
[package]
|
|
name = "cuprate-p2p"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
[dependencies]
|
|
cuprate-constants = { workspace = true }
|
|
cuprate-fixed-bytes = { workspace = true }
|
|
cuprate-wire = { workspace = true }
|
|
cuprate-p2p-core = { workspace = true, features = ["borsh"] }
|
|
cuprate-address-book = { workspace = true }
|
|
cuprate-pruning = { workspace = true }
|
|
cuprate-helper = { workspace = true, features = ["asynch"], default-features = false }
|
|
cuprate-async-buffer = { workspace = true }
|
|
cuprate-types = { workspace = true, default-features = false }
|
|
|
|
monero-serai = { workspace = true, features = ["std"] }
|
|
|
|
tower = { workspace = true, features = ["buffer"] }
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }
|
|
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"] }
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
|
rand_distr = { workspace = true, features = ["std"] }
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
borsh = { workspace = true, features = ["derive", "std"] }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
proptest = { workspace = true }
|
|
tokio-test = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|