mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 19:49:33 +00:00
Boog900
ecd077b402
* init config * split sections * finish initial config. * fix clap * misc changes * fix doc * fix test & clippy * fix test 2 * try fix windows * testing * testing 2 * fix windows test * fix windows: the remix. * review comments * fix imports * rename & fix default config file * fix cargo hack * enable serde on `cuprate-helper` * changes from matrix chats * fix ci * fix doc * fix doc test * move Cuprated.toml * remove default.rs * `size` -> `bytes` * `addressbook_path` -> `address_book_path` * fix config output * fix ci * Update binaries/cuprated/src/config/args.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
34 lines
930 B
TOML
34 lines
930 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, features = ["borsh"] }
|
|
|
|
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
|