Source: rust-axum Version: 0.6.20-34 Severity: normal Tags: patch X-Debbugs-Cc: werdah...@debian.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi Jonas, base64 was update to 0.22 in debian. I attached a convenience patch for axum to use 0.22. best, werdahias - -- System Information: Debian Release: trixie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.10.11-amd64 (SMP w/16 CPU threads; PREEMPT) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: OpenRC (via /run/openrc), PID 1: init LSM: AppArmor: enabled -----BEGIN PGP SIGNATURE----- iIsEARYIADMWIQQUWTv/Sl6/b+DpcW7svtu2B7myvgUCZwFi3hUcd2VyZGFoaWFz QGRlYmlhbi5vcmcACgkQ7L7btge5sr7pyQD9Gj0Jf7BI1ipozmjm4sSqJ60Rk2mJ AE/vUEMtipD+79MA/RlHBCtiLu0qnX5/UZcFIOZbN9gYEtRFMQnfwUB+B/gM =3aTn -----END PGP SIGNATURE-----
commit 2a0603efa7b9a6278c01526fbbd7b9dfe7fd385b Author: Matthias Geiger <werdah...@debian.org> Date: Sat Oct 5 17:59:01 2024 +0200 f diff --git a/debian/control b/debian/control index f6716ad..3b4d389 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Build-Depends: dh-sequence-rust, librust-anyhow-1+default-dev <!nocheck>, librust-async-trait-0.1+default-dev <!nocheck>, - librust-base64-0.21+default-dev <!nocheck>, + librust-base64-0.22+default-dev <!nocheck>, librust-bitflags-1+default-dev <!nocheck>, librust-bytes-1+default-dev <!nocheck>, librust-cookie-0.18+default-dev <!nocheck>, @@ -104,7 +104,7 @@ Depends: librust-async-trait-0.1+default-dev, librust-axum-core-dev (= ${rust:Version:librust-axum-core-dev}), librust-axum-macros-dev (= ${rust:Version:librust-axum-macros-dev}), - librust-base64-0.21+default-dev, + librust-base64-0.22+default-dev, librust-bitflags-1+default-dev, librust-bytes-1+default-dev, librust-futures-util-0.3+alloc-dev, diff --git a/debian/patches/base64.diff b/debian/patches/base64.diff new file mode 100644 index 0000000..8f79773 --- /dev/null +++ b/debian/patches/base64.diff @@ -0,0 +1,11 @@ +--- a/axum/Cargo.toml ++++ b/axum/Cargo.toml +@@ -54,7 +54,7 @@ + + # optional dependencies + axum-macros = { path = "../axum-macros", version = "0.3.8", optional = true } +-base64 = { version = "0.21.0", optional = true } ++base64 = { version = "0.22", optional = true } + headers = { version = "0.3.7", optional = true } + multer = { version = "2.0.0", optional = true } + serde_json = { version = "1.0", features = ["raw_value"], optional = true } diff --git a/debian/patches/series b/debian/patches/series index 6e65271..e3b0a83 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -6,3 +6,4 @@ 2003_no_net_test.patch 2004_no_benches.patch 2005_workspace_testing.patch +base64.diff