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
|
|
|
]
|
2022-07-06 15:24:06 +08:00
|
|
|
default-members = ["warpgate"]
|
2024-01-23 19:05:59 +08:00
|
|
|
resolver = "2"
|
2022-04-11 04:58:58 +08:00
|
|
|
|
2024-11-25 02:35:31 +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"] }
|
2024-11-27 06:13:48 +08:00
|
|
|
tracing = "0.1"
|
2024-12-27 17:16:36 +08:00
|
|
|
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"
|
2024-11-25 02:35:31 +08:00
|
|
|
|
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"]
|