diff options
Diffstat (limited to 'deny.toml')
-rw-r--r-- | deny.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml new file mode 100644 index 0000000..f52b32a --- /dev/null +++ b/deny.toml @@ -0,0 +1,31 @@ +[licenses] +allow = ["AGPL-3.0"] + +[bans] +multiple-versions = "deny" +wildcards = "deny" +allow = [] + +[bans.workspace-dependencies] +duplicates = "deny" +include-path-dependencies = true +unused = "deny" + +[bans.build] +allow-build-scripts = [] +executables = "deny" +interpreted = "deny" +enable-builtin-globs = true +include-dependencies = true +include-archives = true + +[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 = [] |