Browse Source

Disallow git dependencies that are not allowed

And ignore git dependencies that are unmatched, since we sometimes use
the crates.io version.
merge-requests/2136/head
Kévin Commaille 2 months ago
parent
commit
ab0d8dd089
No known key found for this signature in database
GPG Key ID: F26F4BE20A08255B
  1. 4
      deny.toml

4
deny.toml

@ -23,9 +23,11 @@ allow = [
]
[sources]
required-git-spec="rev"
unknown-git = "deny"
required-git-spec = "rev"
allow-git = [
"https://github.com/ruma/ruma",
"https://github.com/matrix-org/matrix-rust-sdk",
"https://gitlab.gnome.org/GNOME/glycin",
]
unused-allowed-source = "allow"

Loading…
Cancel
Save