warpgate/Cargo.toml

28 lines
543 B
TOML
Raw Permalink 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-08-15 00:41:30 +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"]
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"]