veloren/network/Cargo.toml

78 lines
2.1 KiB
TOML
Raw Normal View History

[package]
name = "veloren-network"
version = "0.3.0"
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
2022-01-26 14:46:40 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
metrics = ["prometheus", "network-protocol/metrics"]
compression = ["lz-fear"]
quic = ["quinn"]
2021-04-11 21:37:48 +00:00
default = ["metrics","compression","quic"]
[dependencies]
network-protocol = { package = "veloren-network-protocol", path = "protocol" }
2020-03-04 15:52:30 +00:00
#serialisation
bincode = { workspace = true }
serde = { workspace = true }
#ipv4/ipv6 behavior
2023-05-04 08:44:07 +00:00
socket2 = "0.5.2"
2020-03-04 15:52:30 +00:00
#sending
crossbeam-channel = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "net", "time"] }
tokio-stream = { version = "0.1.2", default-features = false }
2020-03-04 15:52:30 +00:00
#tracing and metrics
tracing = { workspace = true }
prometheus = { workspace = true, optional = true }
2020-03-04 15:52:30 +00:00
#async
futures-core = { version = "0.3", default-features = false }
futures-util = { workspace = true, features = ["std"] }
async-channel = "1.6" #use for .close() channels
#mpsc channel registry
lazy_static = { workspace = true }
rand = { workspace = true }
#quic support
quinn = { version = "0.8", optional = true }
2021-11-19 14:40:59 +00:00
rustls = "0.20.1"
#stream flags
bitflags = { workspace = true }
lz-fear = { version = "0.1.1", optional = true }
# async traits
async-trait = "0.1.42"
bytes = "^1"
# faster HashMaps
hashbrown = { workspace = true }
[dev-dependencies]
2022-01-26 21:08:38 +00:00
tracing-subscriber = { version = "0.3.7", default-features = false, features = ["env-filter", "fmt", "time", "ansi", "smallvec"] }
tokio = { workspace = true, default-features = false, features = ["io-std", "fs", "rt-multi-thread"] }
futures-util = { workspace = true, default-features = false, features = ["sink", "std"] }
clap = { workspace = true }
2023-05-04 08:44:07 +00:00
shellexpand = "3.1.0"
2021-01-20 14:53:58 +00:00
serde = { version = "1.0", features = ["derive"] }
prometheus-hyper = { workspace = true }
criterion = { version = "0.3.4", features = ["default", "async_tokio"] }
#quic
2023-05-04 08:44:07 +00:00
rcgen = { version = "0.10"}
[[bench]]
name = "speed"
harness = false
[[example]]
name = "fileshare"
[[example]]
name = "network-speed"
[[example]]
name = "chat"
[[example]]
name = "tcp_loadtest"