warpgate/warpgate-protocol-mysql/Cargo.toml

29 lines
912 B
TOML
Raw Normal View History

2022-07-09 03:09:41 +08:00
[package]
edition = "2021"
license = "Apache-2.0"
name = "warpgate-protocol-mysql"
version = "0.3.0"
[dependencies]
warpgate-admin = { version = "*", path = "../warpgate-admin" }
warpgate-common = { version = "*", path = "../warpgate-common" }
warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" }
2022-07-20 04:03:35 +08:00
warpgate-database-protocols = { version = "*", path = "../warpgate-database-protocols" }
2022-07-18 05:22:39 +08:00
anyhow = { version = "1.0", features = ["std"] }
2022-07-09 03:09:41 +08:00
async-trait = "0.1"
tokio = { version = "1.19", features = ["tracing", "signal"] }
tracing = "0.1"
2022-07-18 05:22:39 +08:00
uuid = { version = "1.0", features = ["v4"] }
2022-07-09 03:09:41 +08:00
bytes = "1.1"
mysql_common = "0.29"
2022-07-11 00:04:34 +08:00
rand = "0.8"
sha1 = "0.10.1"
2022-07-14 05:14:54 +08:00
password-hash = { version = "0.2", features = ["std"] }
2022-07-11 00:04:34 +08:00
delegate = "0.6"
2022-07-20 04:03:35 +08:00
rustls = { version = "0.20", features = ["dangerous_configuration"] }
2022-07-15 03:22:03 +08:00
rustls-pemfile = "1.0"
tokio-rustls = "0.23"
2022-07-16 01:54:52 +08:00
thiserror = "1.0"
2022-07-17 17:27:43 +08:00
webpki = "0.22"
webpki-roots = "0.22"