diff --git a/Cargo.toml b/Cargo.toml index a2b8536..01740a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,3 +3,9 @@ members = [ "pirates", "client", ] + +[profile.minsized] +inherits = "release" +lto = true +opt-level = 'z' +strip = true diff --git a/client/Cargo.toml b/client/Cargo.toml index 5ac22c5..62450ec 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -4,8 +4,6 @@ version = "0.1.0" edition = "2021" description = "A game about wind" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] minifb = "0.25.0" pirates = { path = "../pirates", default_features = false }