2022-07-20 16:02:37 +08:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "warpgate-protocol-mysql"
|
2022-07-27 06:18:03 +08:00
|
|
|
version = "0.4.0"
|
2022-07-20 16:02:37 +08:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
warpgate-common = { version = "*", path = "../warpgate-common" }
|
|
|
|
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"
|
|
|
|
uuid = { version = "1.0", features = ["v4"] }
|
2022-08-02 04:47:53 +08:00
|
|
|
bytes = "1.2"
|
2022-07-20 16:02:37 +08:00
|
|
|
mysql_common = "0.29"
|
|
|
|
rand = "0.8"
|
|
|
|
sha1 = "0.10.1"
|
|
|
|
password-hash = { version = "0.2", features = ["std"] }
|
|
|
|
rustls = { version = "0.20", features = ["dangerous_configuration"] }
|
|
|
|
rustls-pemfile = "1.0"
|
|
|
|
tokio-rustls = "0.23"
|
|
|
|
thiserror = "1.0"
|
|
|
|
webpki = "0.22"
|
2022-07-24 16:10:36 +08:00
|
|
|
once_cell = "1.13"
|
|
|
|
rustls-native-certs = "0.6"
|