summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author alemi <[email protected]>2024-02-08 17:29:26 +0100
committer alemi <[email protected]>2024-02-08 17:29:26 +0100
commit26cdbb12eb6403e19edfb577748fd5404d39d226 (patch)
treeff340e45aedc312b67381ff4cab89dc12e3c8c7f
parent89553a1dcf81d543026bd22f636b8caa98a21aa6 (diff)
fix: comment out cargo lintsHEADdev
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6745198..066cf29 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -24,7 +24,7 @@ unsafe_code = "forbid"
pedantic = "warn" # extra lints, maybe obnoxious, just warn
nursery = "warn" # experimental lints, may include false positives, just warn
unwrap_used = "warn" # warn for every unwrap used
-cargo = "warn" # warn about cargo manifest lints
+#cargo = "warn" # warn about cargo manifest lints, this is annoying at the beginning
[profile.release] # make small binaries! will take quite longer, from https://github.com/johnthagen/min-sized-rust
opt-level = 'z' # optimize for size