efff80de67
* implemented backend; correct start of monitoring thread needs to be finished * Fix kzgrs backend (#710) * abstract rng * fix rng abstraction * replaced subnets vector with HashSet, fixed bugs, added tests * addressed PR comments * fix clippy warnings * Rename TrackingState -> SamplingState * Short circuit failure on init error --------- Co-authored-by: Daniel Sanchez <sanchez.quiros.daniel@gmail.com> Co-authored-by: danielSanchezQ <3danimanimal@gmail.com>
31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[package]
|
|
name = "nomos-da-sampling"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
bytes = "1.2"
|
|
futures = "0.3"
|
|
hex = "0.4.3"
|
|
kzgrs-backend = { path = "../../../nomos-da/kzgrs-backend" }
|
|
libp2p-identity = { version = "0.2" }
|
|
nomos-core = { path = "../../../nomos-core" }
|
|
nomos-da-network-core = { path = "../../../nomos-da/network/core" }
|
|
nomos-da-network-service = { path = "../../../nomos-services/data-availability/network" }
|
|
nomos-storage = { path = "../../../nomos-services/storage" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" }
|
|
tokio = { version = "1", features = ["sync", "macros"] }
|
|
tokio-stream = "0.1.15"
|
|
tracing = "0.1"
|
|
thiserror = "1.0.63"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
|
|
[features]
|
|
default = ["libp2p"]
|
|
libp2p = []
|