mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-23 12:09:57 +00:00
63216aecae
Some checks failed
Deny / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
Audit / audit (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>
34 lines
907 B
TOML
34 lines
907 B
TOML
[package]
|
|
name = "cuprate-address-book"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
|
|
[dependencies]
|
|
cuprate-constants = { workspace = true }
|
|
cuprate-pruning = { workspace = true }
|
|
cuprate-p2p-core = { workspace = true }
|
|
|
|
tower = { workspace = true, features = ["util"] }
|
|
tokio = { workspace = true, features = ["time", "fs", "rt"]}
|
|
tokio-util = { workspace = true, features = ["time"] }
|
|
|
|
futures = { workspace = true, features = ["std"] }
|
|
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
indexmap = { workspace = true, features = ["std"] }
|
|
|
|
rand = { workspace = true, features = ["std", "std_rng"] }
|
|
|
|
borsh = { workspace = true, features = ["derive", "std"]}
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
|
|
|
[lints]
|
|
workspace = true
|