diff options
| author | Valentin Popov <valentin@popov.link> | 2026-06-25 02:45:23 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-06-25 10:45:32 +0300 |
| commit | 5cc2c5819f2dcfc9b9a8b86615d604d2b8f4c018 (patch) | |
| tree | a4d02bb919998283e10ba018d2f757b227445591 /deny.toml | |
| parent | 27af3806b342cfe82fdd7050a1577f6e45aa8c26 (diff) | |
| download | fparkan-5cc2c5819f2dcfc9b9a8b86615d604d2b8f4c018.tar.xz fparkan-5cc2c5819f2dcfc9b9a8b86615d604d2b8f4c018.zip | |
ci: tighten stage 0 acceptance gates
Diffstat (limited to 'deny.toml')
| -rw-r--r-- | deny.toml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..7717806 --- /dev/null +++ b/deny.toml @@ -0,0 +1,35 @@ +[graph] +all-features = true + +[advisories] +yanked = "deny" + +[bans] +multiple-versions = "allow" +wildcards = "deny" +deny = [ + { name = "native-tls" }, + { name = "openssl" }, + { name = "openssl-sys" }, +] + +[licenses] +unlicensed = "deny" +copyleft = "allow" +allow = [ + "Apache-2.0", + "BSD-2-Clause", + "BSD-3-Clause", + "CC0-1.0", + "GPL-2.0-only", + "ISC", + "MIT", + "MPL-2.0", + "Unicode-3.0", + "Zlib", +] + +[sources] +unknown-registry = "deny" +unknown-git = "deny" +allow-registry = ["https://github.com/rust-lang/crates.io-index"] |
