diff options
Diffstat (limited to 'deny.toml')
| -rw-r--r-- | deny.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..814bc78 --- /dev/null +++ b/deny.toml @@ -0,0 +1,22 @@ +# cargo-deny configuration +# +# Default config: <https://github.com/EmbarkStudios/cargo-deny/blob/main/deny.template.toml> +# Docs: <https://embarkstudios.github.io/cargo-deny/> +# Project: <https://github.com/EmbarkStudios/cargo-deny> +# + +[licenses] +# See <https://spdx.org/licenses/> for possible licenses. +allow = ["Apache-2.0", "MIT", "Unicode-3.0"] +confidence-threshold = 1.0 + +[sources] +unknown-registry = "deny" +unknown-git = "deny" +allow-registry = ["https://github.com/rust-lang/crates.io-index"] +allow-git = [] + +[sources.allow-org] +github = [] +gitlab = [] +bitbucket = [] |