mirror of
https://github.com/RustySamovar/RustySamovar.git
synced 2024-11-21 18:38:18 +00:00
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "Kalitka"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
raw_packet_dump = []
|
|
|
|
[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" }
|
|
rs-ipc = { path = "../rs-ipc" }
|
|
#excel-hash-wrapper-macro = { path = "../excel-hash-wrapper-macro" }
|
|
rs-nodeconf = { path = "../rs-nodeconf" }
|
|
rs-utils = { path = "../rs-utils" }
|
|
|
|
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"
|
|
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"
|
|
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"
|