diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-04-30 10:10:46 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-04-30 10:10:46 +0200 |
| commit | 46a3d2ba70decd1931e13c190bfa49217e57718d (patch) | |
| tree | 49bc767c52d0cb4cf8443782cae1cc641ef59343 /deny.toml | |
| parent | 47421e41def84ab92a52906f01266b1044fbfe29 (diff) | |
| download | temp-postgres-46a3d2ba70decd1931e13c190bfa49217e57718d.tar.gz | |
Rewrite in async Rust
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 = [] |