servers/Cargo.toml

17 lines
479 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 = { version = "0.4.17", features = ["release_max_level_info", "max_level_trace"] }
simple_logger = { version = "2.1.0", default-features = false, features = ["colors"] }
tokio = { version = "1.19.1", features = ["rt-multi-thread", "macros"] }