mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
28 lines
558 B
TOML
28 lines
558 B
TOML
cargo-features = ["profile-rustflags"]
|
|
|
|
[workspace]
|
|
members = [
|
|
"warpgate",
|
|
"warpgate-admin",
|
|
"warpgate-common",
|
|
"warpgate-core",
|
|
"warpgate-db-migrations",
|
|
"warpgate-db-entities",
|
|
"warpgate-database-protocols",
|
|
"warpgate-protocol-http",
|
|
"warpgate-protocol-mysql",
|
|
"warpgate-protocol-ssh",
|
|
"warpgate-sso",
|
|
"warpgate-web",
|
|
]
|
|
default-members = ["warpgate"]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = "abort"
|
|
strip = "debuginfo"
|
|
|
|
[profile.coverage]
|
|
inherits = "dev"
|
|
rustflags = ["-Cinstrument-coverage"]
|