veloren/network/Cargo.toml

29 lines
839 B
TOML
Raw Normal View History

[package]
name = "veloren_network"
version = "0.1.0"
authors = ["Marcel Märtens <marcel.cochem@googlemail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-04 15:52:30 +00:00
#threadpool
uvth = "3.1"
#serialisation
bincode = "1.2"
serde = { version = "1.0" }
2020-03-04 15:52:30 +00:00
#sending
async-std = { version = "~1.5", features = ["std"] }
2020-03-04 15:52:30 +00:00
#tracing and metrics
tracing = { version = "0.1", default-features = false }
tracing-futures = "0.2"
prometheus = "0.7"
2020-03-04 15:52:30 +00:00
#async
futures = { version = "0.3", features = ["thread-pool"] }
#mpsc channel registry
lazy_static = { version = "1.4", default-features = false }
rand = { version = "0.7" }
[dev-dependencies]
tracing-subscriber = { version = "0.2.3", default-features = false, features = ["env-filter", "fmt", "chrono", "ansi", "smallvec"] }