servers/Cargo.toml

31 lines
899 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"
2022-06-17 12:18:29 +00:00
description = "Simple TCP server for clients written in Rust with plugins support"
2022-06-26 11:05:57 +00:00
version = "0.2.0"
2022-06-17 12:18:29 +00:00
license = "MIT"
authors = ["MedzikUser <nivua1fn@duck.com>"]
homepage = "https://github.com/MedzikUser/servers"
repository = "https://github.com/MedzikUser/servers.git"
2022-06-04 11:58:21 +00:00
edition = "2021"
2022-06-17 12:15:09 +00:00
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
2022-06-04 11:58:21 +00:00
[dependencies]
anyhow = "1.0.58"
2022-06-04 11:58:21 +00:00
async-trait = "0.1.56"
2022-06-26 10:59:48 +00:00
better-panic = "0.3.0"
libloading = "0.7.3"
simplelog = "0.12.0"
tokio-tungstenite = "0.17.1"
tungstenite = "0.17.2"
clap = { version = "3.2.6", features = ["derive"] }
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
log = { version = "0.4.17", features = ["release_max_level_info", "max_level_debug"] }
tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros", "net"] }