diff --git a/.circleci/config.yml b/.circleci/config.yml index 6772ab8..ddcf719 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,6 +14,8 @@ jobs: environment: # Fail the build if there are warnings RUSTFLAGS: "-D warnings" + CARGO_INCREMENTAL: 0 + # RUSTC_WRAPPER: "sccache" steps: - checkout - run: diff --git a/Cargo.toml b/Cargo.toml index 73046a0..f9ae5f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,3 +41,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } uuid = { version = "1.9.1", features = ["v4", "fast-rng", "macro-diagnostics"] } validator = { version = "0.18.1", features = ["derive"] } zxcvbn = "3.0.1" + +[profile.dev] +debug = 0 +strip = "debuginfo"