mirror of
https://github.com/exo-explore/exo.git
synced 2026-01-29 08:12:04 -05:00
Fix. Everything. Co-authored-by: Andrei Cravtov <the.andrei.cravtov@gmail.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com> Co-authored-by: Alex Cheema <alexcheema123@gmail.com> Co-authored-by: Seth Howes <sethshowes@gmail.com>
44 lines
1004 B
TOML
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"] } |