warpgate/warpgate-protocol-mysql/Cargo.toml

29 lines
924 B
TOML
Raw Normal View History

2022-07-20 16:02:37 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-protocol-mysql"
2024-08-15 04:59:52 +08:00
version = "0.10.2"
2022-07-20 16:02:37 +08:00
[dependencies]
warpgate-common = { version = "*", path = "../warpgate-common" }
2022-09-02 20:00:08 +08:00
warpgate-core = { version = "*", path = "../warpgate-core" }
2022-07-20 16:02:37 +08:00
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
warpgate-database-protocols = { version = "*", path = "../warpgate-database-protocols" }
anyhow = { version = "1.0", features = ["std"] }
async-trait = "0.1"
tokio = { version = "1.20", features = ["tracing", "signal"] }
tracing = "0.1"
2024-09-18 17:28:39 +08:00
uuid = { version = "1.3", features = ["v4"] }
bytes = "1.4"
2022-07-20 16:02:37 +08:00
mysql_common = "0.29"
rand = "0.8"
2024-09-18 17:28:39 +08:00
sha1 = "0.10"
2022-07-20 16:02:37 +08:00
password-hash = { version = "0.2", features = ["std"] }
2024-09-18 17:28:39 +08:00
rustls = { version = "0.23", features = ["ring"], default-features = false }
2022-07-20 16:02:37 +08:00
rustls-pemfile = "1.0"
2024-09-18 17:28:39 +08:00
tokio-rustls = "0.26"
2022-07-20 16:02:37 +08:00
thiserror = "1.0"
webpki = "0.22"
once_cell = "1.17"
2022-07-24 16:10:36 +08:00
rustls-native-certs = "0.6"