Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions linting/rust/deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ allow = ["AGPL-3.0-only", "AGPL-3.0-or-later"]
[[licenses.exceptions]]
name = "zitadel-token"
allow = ["AGPL-3.0-only", "AGPL-3.0-or-later"]

# Ban openssl, because only rustls should be used in general. Most of the
# ecosystem supports to choose between openssl and rustls with feature flags
# such as `rustls-tls`, and we prefer rustls because it forbids unsafe code.
# Usually, openssl gets included acidentally, so let's ban it here. If you
# actually must use openssl, override this ban and add an explanation. Add a
# ban of rustls in this case, except when you actually need two different TLS
# implementations, which also would need to be explained.
[[bans.deny]]
name = "openssl-sys"
wrappers = []
Loading