mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
2a7c5807ff
fix async_recv and double block_on panic on Network::drop and participant::drop include Cargo.lock from all examples Found a bug on imbris runners with doc tests of `stream::send` and `stream::recv` As neither a backtrace, nor tracing on runners in the doc tests seems to help, i disable them and add them as unit tests
22 lines
570 B
TOML
22 lines
570 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "fileshare"
|
|
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]
|
|
uvth = "3.1"
|
|
network = { package = "veloren_network", path = "../../../network" }
|
|
clap = "2.33"
|
|
async-std = { version = "1.5", default-features = false }
|
|
futures = "0.3"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2.3"
|
|
bincode = "1.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
rand = "0.7.3"
|
|
shellexpand = "2.0.0" |