warpgate/Cargo.toml

43 lines
895 B
TOML
Raw Normal View History

2025-01-30 21:16:37 +08:00
# cargo-features = ["profile-rustflags"]
2022-08-14 18:36:49 +08:00
2022-04-11 04:58:58 +08:00
[workspace]
members = [
"warpgate",
"warpgate-admin",
"warpgate-common",
2022-09-02 20:00:08 +08:00
"warpgate-core",
2022-04-11 04:58:58 +08:00
"warpgate-db-migrations",
"warpgate-db-entities",
2022-07-20 16:02:37 +08:00
"warpgate-database-protocols",
2022-06-27 02:50:04 +08:00
"warpgate-protocol-http",
2022-07-20 16:02:37 +08:00
"warpgate-protocol-mysql",
2024-10-09 06:08:33 +08:00
"warpgate-protocol-postgres",
2022-04-11 04:58:58 +08:00
"warpgate-protocol-ssh",
2022-08-06 02:04:40 +08:00
"warpgate-sso",
2022-06-27 02:50:04 +08:00
"warpgate-web",
2022-04-11 04:58:58 +08:00
]
default-members = ["warpgate"]
2024-01-23 19:05:59 +08:00
resolver = "2"
2022-04-11 04:58:58 +08:00
[workspace.dependencies]
bytes = "1.4"
data-encoding = "2.3"
serde = "1.0"
serde_json = "1.0"
2025-01-30 21:16:37 +08:00
russh = { version = "0.50.0", features = ["des"] }
tracing = "0.1"
futures = "0.3"
tokio-stream = { version = "0.1.17", features = ["net"] }
2025-01-30 21:16:37 +08:00
tokio-rustls = "0.26"
enum_dispatch = "0.3.13"
rustls = "0.23"
2022-04-11 04:58:58 +08:00
[profile.release]
lto = true
panic = "abort"
strip = "debuginfo"
2022-08-14 18:36:49 +08:00
[profile.coverage]
inherits = "dev"
2025-01-30 21:16:37 +08:00
# rustflags = ["-Cinstrument-coverage"]