2020-01-01 20:36:10 +00:00
|
|
|
[package]
|
|
|
|
name = "chorus-client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Lukas Bachschwell <lukas@lbsfilm.at>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-26 15:01:34 +00:00
|
|
|
|
2020-01-28 17:37:13 +00:00
|
|
|
toml = "0.5"
|
|
|
|
futures-timer = "3.0.0"
|
2020-01-26 15:01:34 +00:00
|
|
|
clap = "2.33.0"
|
|
|
|
url = "2.1.1"
|
2020-01-29 09:05:55 +00:00
|
|
|
serde = "1.0.97"
|
|
|
|
serde_derive = "1.0"
|
2020-01-26 15:01:34 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
rand = "0.7.3"
|
2020-01-28 17:37:13 +00:00
|
|
|
tokio = { version = "0.2.11", default-features = false, features = ["io-std", "macros", "udp"] }
|
2020-01-26 16:52:43 +00:00
|
|
|
futures = "0.3"
|
|
|
|
pin-project = "0.4"
|
|
|
|
tungstenite = "0.9.2"
|
|
|
|
env_logger = "0.7"
|
|
|
|
log = "*"
|
|
|
|
|
|
|
|
[dependencies.tokio-tungstenite]
|
|
|
|
|
|
|
|
git = "https://github.com/snapview/tokio-tungstenite"
|