mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-12-22 11:39:30 +00:00
372cab24d7
Some checks failed
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (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
Deny / audit (push) Has been cancelled
Doc / build (push) Has been cancelled
Doc / deploy (push) Has been cancelled
* apply diffs * clippy * fix tests * rpc: fix tests * remove `BlockchainManagerRequest::Overview` * cuprated/p2p: fix `ConnectionInfo` * move `CalculatePow` * remove `AddAuxPow` * move `Spans` and `NextNeededPruningSeed` * factor types into `cuprate-types` * scope cargo features * fix/doc type serde * Update binaries/cuprated/src/rpc/request/address_book.rs Co-authored-by: Boog900 <boog900@tutanota.com> * Update binaries/cuprated/src/rpc/request/blockchain_context.rs Co-authored-by: Boog900 <boog900@tutanota.com> * Update binaries/cuprated/src/rpc/request/blockchain_manager.rs Co-authored-by: Boog900 <boog900@tutanota.com> * fmt * txpool: collapse `TxEntry` * `ConnectionId` * fix import * fix bin --------- Co-authored-by: Boog900 <boog900@tutanota.com>
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "cuprate-p2p-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
|
|
[features]
|
|
default = ["borsh"]
|
|
borsh = ["dep:borsh", "cuprate-pruning/borsh"]
|
|
|
|
[dependencies]
|
|
cuprate-helper = { workspace = true, features = ["asynch"], default-features = false }
|
|
cuprate-wire = { workspace = true, features = ["tracing"] }
|
|
cuprate-pruning = { workspace = true }
|
|
cuprate-types = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["net", "sync", "macros", "time", "rt", "rt-multi-thread"]}
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
tokio-stream = { workspace = true, features = ["sync"]}
|
|
futures = { workspace = true, features = ["std"] }
|
|
async-trait = { workspace = true }
|
|
tower = { workspace = true, features = ["util", "tracing", "make"] }
|
|
|
|
cfg-if = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
|
hex-literal = { workspace = true }
|
|
|
|
borsh = { workspace = true, features = ["derive", "std"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
cuprate-test-utils = { workspace = true }
|
|
|
|
hex = { workspace = true, features = ["std"] }
|
|
tokio-test = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|