Files
exo/rust/networking/Cargo.toml
38ff949bf4 big refactor
Fix. Everything.

Co-authored-by: Andrei Cravtov <[email protected]>
Co-authored-by: Matt Beton <[email protected]>
Co-authored-by: Alex Cheema <[email protected]>
Co-authored-by: Seth Howes <[email protected]>
2025-09-30 11:03:04 +01:00

44 lines
1004 B
TOML

[package]
name = "networking"
version = { workspace = true }
edition = { workspace = true }
publish = false
[lib]
doctest = false
name = "networking"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
# datastructures
either = { workspace = true }
# macro dependencies
extend = { workspace = true }
delegate = { workspace = true }
impl-trait-for-tuples = { workspace = true }
derive_more = { workspace = true }
# async
tokio = { workspace = true, features = ["full"] }
futures = { workspace = true }
futures-timer = { workspace = true }
# utility dependencies
util = { workspace = true }
thiserror = { workspace = true }
#internment = { workspace = true }
#recursion = { workspace = true }
#generativity = { workspace = true }
#itertools = { workspace = true }
tracing-subscriber = { version = "0.3.19", features = ["default", "env-filter"] }
keccak-const = { workspace = true }
# tracing/logging
log = { workspace = true }
# networking
libp2p = { workspace = true, features = ["full"] }