RustySamovar/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2021-09-24 19:37:52 +00:00
[package]
name = "RustySamovar"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-04-04 17:57:05 +00:00
[features]
raw_packet_dump = []
2021-09-24 19:37:52 +00:00
[dependencies]
kcp = { path = "kcp" }
mhycrypt = { path = "mhycrypt" }
proto = { path = "proto" }
lua_serde = { path = "lua_serde" }
packet-processor-macro = { path = "packet-processor-macro" }
packet-processor = { path = "packet-processor" }
2021-09-24 19:37:52 +00:00
prost = "0.8"
bytes = "1.1.0"
base64 = "0.13.0"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
pretty_env_logger = "0.4"
2021-10-02 19:17:33 +00:00
num-traits = "0.2"
num-derive = "0.3"
pretty-hex = "0.2"
sea-orm = { version = "0.7", features = [ "sqlx-all", "runtime-async-std-native-tls", "debug-print" ] }
#hostname = "0.3"
#local-ip-address = "0.4"
2022-01-26 16:42:15 +00:00
chrono = "0.4"
rand = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[target.'cfg(windows)'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.'cfg(unix)'.dependencies]
openssl = "0.10"