mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
6c2fbbf275
To run the benchmarks: cargo bench And then open the generated `target/criterion/report/index.html` in a browser. - add the BSD 2 clause and ISC licenses to the `cargo deny` allowed licenses list (as a transitive dependency of the `fakeit` crate). - remove the WTFPL license from the `cargo deny` allowed licenses list as it is unused and causes a warning when running the check.
27 lines
486 B
TOML
27 lines
486 B
TOML
# configuration for https://github.com/EmbarkStudios/cargo-deny
|
|
|
|
[licenses]
|
|
default = "deny"
|
|
unlicensed = "deny"
|
|
copyleft = "deny"
|
|
confidence-threshold = 0.8
|
|
allow = [
|
|
"Apache-2.0",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"ISC",
|
|
"MIT",
|
|
"Unicode-DFS-2016",
|
|
]
|
|
|
|
[advisories]
|
|
unmaintained = "deny"
|
|
yanked = "deny"
|
|
|
|
[bans]
|
|
multiple-versions = "allow"
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "warn"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|