mirror of
https://git.proxmox.com/git/proxmox
synced 2025-04-28 11:44:39 +00:00
bump proxmox-router to 3.1.1-1
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
e4bc435beb
commit
b82e51f15a
@ -137,7 +137,7 @@ proxmox-login = { version = "0.2.0", path = "proxmox-login" }
|
||||
proxmox-product-config = { version = "0.2.0", path = "proxmox-product-config" }
|
||||
proxmox-config-digest = { version = "0.1.0", path = "proxmox-config-digest" }
|
||||
proxmox-rest-server = { version = "0.8.7", path = "proxmox-rest-server" }
|
||||
proxmox-router = { version = "3.1.0", path = "proxmox-router" }
|
||||
proxmox-router = { version = "3.1.1", path = "proxmox-router" }
|
||||
proxmox-schema = { version = "4.0.0", path = "proxmox-schema" }
|
||||
proxmox-section-config = { version = "2.1.0", path = "proxmox-section-config" }
|
||||
proxmox-sendmail = { version = "0.1.0", path = "proxmox-sendmail" }
|
||||
|
@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "proxmox-router"
|
||||
description = "proxmox API Router and CLI utilities"
|
||||
version = "3.1.0"
|
||||
version = "3.1.1"
|
||||
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
|
@ -1,3 +1,15 @@
|
||||
rust-proxmox-router (3.1.1-1) bookworm; urgency=medium
|
||||
|
||||
* router: allow `from_str` on Confirmation that is not for `FromStr`
|
||||
|
||||
* router: fix nested doc test cases to match inteded output
|
||||
|
||||
* router: cli: avoid unnecessary clones/allocation
|
||||
|
||||
* rebuild with env_logger 0.11
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Thu, 13 Mar 2025 13:55:37 +0100
|
||||
|
||||
rust-proxmox-router (3.1.0-1) bookworm; urgency=medium
|
||||
|
||||
* add `AsyncHttpBodyParameters` api handler type to server feature
|
||||
|
@ -2,12 +2,12 @@ Source: rust-proxmox-router
|
||||
Section: rust
|
||||
Priority: optional
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
dh-sequence-cargo,
|
||||
cargo:native <!nocheck>,
|
||||
dh-sequence-cargo
|
||||
Build-Depends-Arch: cargo:native <!nocheck>,
|
||||
rustc:native (>= 1.80) <!nocheck>,
|
||||
libstd-rust-dev <!nocheck>,
|
||||
librust-anyhow-1+default-dev <!nocheck>,
|
||||
librust-env-logger-0.10+default-dev <!nocheck>,
|
||||
librust-env-logger-0.11+default-dev <!nocheck>,
|
||||
librust-futures-0.3+default-dev <!nocheck>,
|
||||
librust-http-0.2+default-dev <!nocheck>,
|
||||
librust-hyper-0.14+default-dev (>= 0.14.5-~~) <!nocheck>,
|
||||
@ -59,7 +59,7 @@ Suggests:
|
||||
Provides:
|
||||
librust-proxmox-router-3-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - Rust source code
|
||||
Source code for Debianized Rust crate "proxmox-router"
|
||||
|
||||
@ -70,13 +70,13 @@ Depends:
|
||||
${misc:Depends},
|
||||
librust-proxmox-router-dev (= ${binary:Version}),
|
||||
librust-proxmox-router+stream-dev (= ${binary:Version}),
|
||||
librust-env-logger-0.10+default-dev,
|
||||
librust-env-logger-0.11+default-dev,
|
||||
librust-libc-0.2+default-dev (>= 0.2.107-~~),
|
||||
librust-rustyline-9+default-dev
|
||||
Provides:
|
||||
librust-proxmox-router-3+cli-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1+cli-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0+cli-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1+cli-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - feature "cli"
|
||||
This metapackage enables feature "cli" for the Rust proxmox-router crate, by
|
||||
pulling in any additional dependencies needed by that feature.
|
||||
@ -92,7 +92,7 @@ Depends:
|
||||
Provides:
|
||||
librust-proxmox-router-3+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1+default-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0+default-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1+default-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - feature "default"
|
||||
This metapackage enables feature "default" for the Rust proxmox-router crate,
|
||||
by pulling in any additional dependencies needed by that feature.
|
||||
@ -109,7 +109,7 @@ Depends:
|
||||
Provides:
|
||||
librust-proxmox-router-3+server-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1+server-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0+server-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1+server-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - feature "server"
|
||||
This metapackage enables feature "server" for the Rust proxmox-router crate, by
|
||||
pulling in any additional dependencies needed by that feature.
|
||||
@ -125,7 +125,7 @@ Depends:
|
||||
Provides:
|
||||
librust-proxmox-router-3+stream-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1+stream-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0+stream-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1+stream-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - feature "stream"
|
||||
This metapackage enables feature "stream" for the Rust proxmox-router crate, by
|
||||
pulling in any additional dependencies needed by that feature.
|
||||
@ -140,7 +140,7 @@ Depends:
|
||||
Provides:
|
||||
librust-proxmox-router-3+test-harness-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1+test-harness-dev (= ${binary:Version}),
|
||||
librust-proxmox-router-3.1.0+test-harness-dev (= ${binary:Version})
|
||||
librust-proxmox-router-3.1.1+test-harness-dev (= ${binary:Version})
|
||||
Description: Proxmox API Router and CLI utilities - feature "test-harness"
|
||||
This metapackage enables feature "test-harness" for the Rust proxmox-router
|
||||
crate, by pulling in any additional dependencies needed by that feature.
|
||||
|
Loading…
Reference in New Issue
Block a user