* Fix typo in test_helper script Signed-off-by: Nico Burns <nico@nicoburns.com> * Bump MSRV to 1.71 Signed-off-by: Nico Burns <nico@nicoburns.com> * Implement `FromStr` for style types Signed-off-by: Nico Burns <nico@nicoburns.com> * Expose parsing error messages as strings * Allow Unicode-3.0 license Signed-off-by: Nico Burns <nico@nicoburns.com> * Parse keyword enums using cssparser --------- Signed-off-by: Nico Burns <nico@nicoburns.com>
34 lines
614 B
TOML
34 lines
614 B
TOML
[advisories]
|
|
version = 2
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
yanked = "deny"
|
|
ignore = [
|
|
"RUSTSEC-2021-0145" # from criterion, used only for benchmarking
|
|
]
|
|
|
|
[licenses]
|
|
version = 2
|
|
allow = [
|
|
"MIT",
|
|
"Unicode-DFS-2016",
|
|
"Apache-2.0",
|
|
"Zlib",
|
|
"ISC",
|
|
"BSD-3-Clause",
|
|
"Unicode-3.0",
|
|
"MPL-2.0",
|
|
]
|
|
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "deny"
|
|
allow-wildcard-paths = true
|
|
highlight = "all"
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = []
|