feat: enhance CI configuration with additional jobs for MSRV, Cargo Deny, Semver Check, Miri, Minimal Versions, and Typos

This commit is contained in:
Manuel Raimann
2026-01-30 18:02:36 +01:00
parent d93f384f1e
commit 8a11dd8ca4
3 changed files with 122 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[advisories]
version = 2
db-path = "~/.cargo/advisory-db"
ignore = []
[licenses]
version = 2
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"Unicode-3.0",
]
confidence-threshold = 0.8
[bans]
multiple-versions = "warn"
wildcards = "allow"
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]