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]
|
2022-05-28 13:20:50 +00:00
|
|
|
kcp = { path = "kcp" }
|
|
|
|
mhycrypt = { path = "mhycrypt" }
|
|
|
|
proto = { path = "proto" }
|
|
|
|
lua_serde = { path = "lua_serde" }
|
2021-10-20 21:51:01 +00:00
|
|
|
packet-processor-macro = { path = "packet-processor-macro" }
|
|
|
|
packet-processor = { path = "packet-processor" }
|
2022-10-06 13:12:40 +00:00
|
|
|
rs-ipc = { path = "rs-ipc" }
|
2023-03-05 22:45:35 +00:00
|
|
|
excel-hash-wrapper-macro = { path = "excel-hash-wrapper-macro" }
|
2021-10-20 21:51:01 +00:00
|
|
|
|
2021-09-24 19:37:52 +00:00
|
|
|
prost = "0.8"
|
|
|
|
bytes = "1.1.0"
|
2021-10-20 21:51:01 +00:00
|
|
|
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"
|
2021-10-20 21:51:01 +00:00
|
|
|
pretty-hex = "0.2"
|
2022-03-29 18:28:42 +00:00
|
|
|
sea-orm = { version = "0.7", features = [ "sqlx-all", "runtime-async-std-native-tls", "debug-print" ] }
|
2022-07-24 09:42:59 +00:00
|
|
|
#hostname = "0.3"
|
2022-02-09 15:22:10 +00:00
|
|
|
#local-ip-address = "0.4"
|
2022-01-26 16:42:15 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
rand = "0.8"
|
2022-03-29 18:28:42 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2021-10-20 21:51:01 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
openssl = { version = "0.10", features = ["vendored"] }
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
openssl = "0.10"
|