servers/Cargo.toml

23 lines
520 B
TOML
Raw Normal View History

2022-06-04 18:10:21 +00:00
[workspace]
members = ["plugin_test"]
2022-08-04 14:35:33 +00:00
resolver = "2"
2022-06-04 18:10:21 +00:00
2022-06-04 11:58:21 +00:00
[package]
name = "servers"
version = "0.1.0"
2022-06-04 11:58:21 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-06-17 12:15:09 +00:00
2022-06-04 11:58:21 +00:00
[dependencies]
anyhow = "1.0.61"
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1.57"
clap = { version = "3.2.17", features = ["derive"] }
libloading = "0.7.3"
tracing = "0.1.36"
2022-08-04 14:35:33 +00:00
tracing-subscriber = "0.3.15"
tungstenite = "0.17.3"
futures = "0.3.23"
lazy_static = "1.4.0"