servers/Cargo.toml

16 lines
310 B
TOML
Raw Normal View History

2022-06-04 18:10:21 +00:00
[workspace]
members = ["plugin_test"]
2022-06-04 11:58:21 +00:00
[package]
name = "servers"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.57"
async-trait = "0.1.56"
2022-06-04 19:34:53 +00:00
clap = { version = "3.1.18", features = ["derive"] }
2022-06-04 11:58:21 +00:00
libloading = "0.7.3"
log = "0.4.17"
2022-06-04 19:34:53 +00:00
tokio = { version = "1.19.0", features = ["rt-multi-thread"] }