RustySamovar/Cargo.toml

34 lines
849 B
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
[dependencies]
kcp = { path = "../kcp" }
mhycrypt = { path = "../mhycrypt" }
proto = { path = "../proto" }
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"] }
actix-web = { version = "3", features = ["openssl"] }
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-09-24 19:37:52 +00:00
pretty-hex = "0.2"
[target.'cfg(windows)'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[target.'cfg(unix)'.dependencies]
openssl = "0.10"