diff --git a/Cargo.toml b/Cargo.toml index f74ffb4..381231f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,3 +7,17 @@ description = "It can parse your arguments you should use it it's called jaarg" [features] default = ["std"] std = [] + +[profile.release] +lto = "thin" +strip = "symbols" + +[profile.release-debuginfo] +inherits = "release" +strip = "none" +debug = 1 + +[profile.dev-fast] +inherits = "dev" +strip = "debuginfo" +debug = 0