9721e6f5fa
* Refactor mempool naming and added settings to backend trait * Implement mempool networking traits and waku backend * Transaction networking plumbing in mempool service * Make TransactionMsg generic Use bincode to deserialize tx messages * Make wakuadapter generic over tx and tx-id * Fix wrong backend type bound * Adapt to waku beta2 * Thread tx and id together for adapter and pool * Panic on subscribing error * Prune unnecessary Id type bounds * Remove transaction placeholder * Remove Id bound from waku adapter * Remove empty transactions module
27 lines
560 B
TOML
27 lines
560 B
TOML
[package]
|
|
name = "nomos-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = [
|
|
"Daniel Sanchez Quiros <danielsq@status.im>"
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1" }
|
|
bytes = "1.3"
|
|
futures = "0.3"
|
|
raptorq = { version = "1.7", optional = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
tokio = { version = "1.23", features = ["macros", "rt"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
raptor = ["raptorq"]
|