svix-server: 1.30.0 -> 1.38.0 (#348824)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-19 03:58:38 +02:00 committed by GitHub
commit 50e6521996
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 21 additions and 3 deletions

View File

@ -2100,6 +2100,23 @@ dependencies = [
"tower-layer",
]
[[package]]
name = "hyper-proxy"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca815a891b24fdfb243fa3239c86154392b0953ee584aa1a2a1f66d20cbe75cc"
dependencies = [
"bytes",
"futures",
"headers",
"http 0.2.12",
"hyper 0.14.28",
"openssl",
"tokio",
"tokio-openssl",
"tower-service",
]
[[package]]
name = "hyper-rustls"
version = "0.24.2"
@ -4830,7 +4847,7 @@ dependencies = [
[[package]]
name = "svix-server"
version = "1.30.0"
version = "1.38.0"
dependencies = [
"aide",
"anyhow",
@ -4857,6 +4874,7 @@ dependencies = [
"http 0.2.12",
"hyper 0.14.28",
"hyper-openssl",
"hyper-proxy",
"hyper-socks2",
"indexmap 1.9.3",
"ipnet",

View File

@ -3,13 +3,13 @@
rustPlatform.buildRustPackage rec {
pname = "svix-server";
version = "1.30.0";
version = "1.38.0";
src = fetchFromGitHub {
owner = "svix";
repo = "svix-webhooks";
rev = "v${version}";
hash = "sha256-W5oLN0rMG2c8h05sIEOf4h95SQrFrs/7vLpsHH91sIA=";
hash = "sha256-gi6Jm0tf1lP10UYpouCleN32K71upYOudxjOoRgsGLg=";
};
sourceRoot = "${src.name}/server";