Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ members = [

[workspace.package]
version = "1.91.0"
license = "MIT"

[workspace.lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
Expand Down
1 change: 1 addition & 0 deletions bridge/svix-bridge-plugin-kafka/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
rust-version = "1.91"
publish = false
license.workspace = true

[dependencies]
rdkafka = { version = "0.38.0", features = ["cmake-build", "ssl", "tracing"] }
Expand Down
1 change: 1 addition & 0 deletions bridge/svix-bridge-plugin-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
rust-version = "1.91"
publish = false
license.workspace = true

[dependencies]
serde.workspace = true
Expand Down
1 change: 1 addition & 0 deletions bridge/svix-bridge-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
rust-version = "1.91"
publish = false
license.workspace = true

[dependencies]
async-trait = "0.1"
Expand Down
1 change: 1 addition & 0 deletions bridge/svix-bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version.workspace = true
edition = "2021"
rust-version = "1.91"
publish = false
license.workspace = true

[dependencies]
anyhow = "1"
Expand Down
41 changes: 14 additions & 27 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ targets = [
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
# there are multiple projects in here
unused-ignored-advisory = "allow"
ignore = [
# TODO: Update dependencies that use rsa crate
"RUSTSEC-2023-0071",
Expand All @@ -23,12 +25,6 @@ ignore = [
"RUSTSEC-2025-0134",
# bincode (depended on by deno) is unmaintained
"RUSTSEC-2025-0141",
# rustls-webpki incorrectly handles CRLs for certificates with multiple distributionPoints;
# the old versions are used in smithy and we can't upgrade them right now. this will be fixed
# when smithy drops hyper 0.x support
"RUSTSEC-2026-0049",
# can't upgrade rand until some dependencies support 0.10
"RUSTSEC-2026-0097",
]

[licenses]
Expand All @@ -48,35 +44,20 @@ allow = [
"CC0-1.0",
"Zlib",
]
unused-allowed-license = "allow"
unused-license-exception = "allow"
confidence-threshold = 0.8
exceptions = [
#{ allow = ["Zlib"], name = "adler32", version = "*" },
{ allow = ["EPL-2.0"], name = "colored_json", version = "*" }
]

[[licenses.clarify]]
name = "ring"
version = "*"
expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 }
]

[[licenses.clarify]]
name = "encoding_rs"
version = "0.8.30"
expression = "MIT OR Apache-2.0"
license-files = [
{ path = "COPYRIGHT", hash = 0x39f8ad31 }
]

# TODO: Include internal crates
[licenses.private]
ignore = false
registries = []

[bans]
multiple-versions = "warn"
multiple-versions = "allow"
wildcards = "allow"
highlight = "all"
allow = []
Expand All @@ -90,7 +71,13 @@ skip = []
skip-tree = []

[sources]
unknown-registry = "warn"
unknown-git = "warn"
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
allow-git = [
"https://github.com/svix/hyper.git",
"https://github.com/svix/omniqueue-rs.git",
"https://github.com/svix/validator.git",
]
# there are several projects in here, so it's okay if we don't use them all
unused-allowed-source = "allow"
44 changes: 22 additions & 22 deletions server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading