warpgate/Cargo.toml

29 lines
558 B
TOML
Raw Normal View History

2022-08-14 18:36:49 +08:00
cargo-features = ["profile-rustflags"]
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",
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
[profile.release]
lto = true
panic = "abort"
strip = "debuginfo"
2022-08-14 18:36:49 +08:00
[profile.coverage]
inherits = "dev"
rustflags = ["-Cinstrument-coverage"]