mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-14 13:08:56 +00:00
bump proxmox-router to 2.1.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
d143efd01a
commit
f67ea142bc
@ -106,7 +106,7 @@ proxmox-io = { version = "1.0.0", path = "proxmox-io" }
|
|||||||
proxmox-lang = { version = "1.1", path = "proxmox-lang" }
|
proxmox-lang = { version = "1.1", path = "proxmox-lang" }
|
||||||
proxmox-login = { version = "0.1.0", path = "proxmox-login" }
|
proxmox-login = { version = "0.1.0", path = "proxmox-login" }
|
||||||
proxmox-rest-server = { version = "0.5.0", path = "proxmox-rest-server" }
|
proxmox-rest-server = { version = "0.5.0", path = "proxmox-rest-server" }
|
||||||
proxmox-router = { version = "2.1.1", path = "proxmox-router" }
|
proxmox-router = { version = "2.1.3", path = "proxmox-router" }
|
||||||
proxmox-schema = { version = "3.0.0", path = "proxmox-schema" }
|
proxmox-schema = { version = "3.0.0", path = "proxmox-schema" }
|
||||||
proxmox-section-config = { version = "2.0.0", path = "proxmox-section-config" }
|
proxmox-section-config = { version = "2.0.0", path = "proxmox-section-config" }
|
||||||
proxmox-serde = { version = "0.1.1", path = "proxmox-serde", features = [ "serde_json" ] }
|
proxmox-serde = { version = "0.1.1", path = "proxmox-serde", features = [ "serde_json" ] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-router"
|
name = "proxmox-router"
|
||||||
version = "2.1.2"
|
version = "2.1.3"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
rust-proxmox-router (2.1.3-1) stable; urgency=medium
|
||||||
|
|
||||||
|
* cli: allow specifying the arguments explicitly
|
||||||
|
|
||||||
|
* add oneOf schema support and bump proxmox-schema dependency to 3
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Fri, 02 Feb 2024 13:54:46 +0100
|
||||||
|
|
||||||
rust-proxmox-router (2.1.2-1) stable; urgency=medium
|
rust-proxmox-router (2.1.2-1) stable; urgency=medium
|
||||||
|
|
||||||
* fix a compile warning
|
* fix a compile warning
|
||||||
|
@ -17,14 +17,14 @@ Build-Depends: debhelper (>= 12),
|
|||||||
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~) <!nocheck>,
|
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~) <!nocheck>,
|
||||||
librust-proxmox-http-error-0.1+default-dev <!nocheck>,
|
librust-proxmox-http-error-0.1+default-dev <!nocheck>,
|
||||||
librust-proxmox-lang-1+default-dev (>= 1.1-~~) <!nocheck>,
|
librust-proxmox-lang-1+default-dev (>= 1.1-~~) <!nocheck>,
|
||||||
librust-proxmox-schema-2+default-dev <!nocheck>,
|
librust-proxmox-schema-3+default-dev <!nocheck>,
|
||||||
librust-rustyline-9+default-dev <!nocheck>,
|
librust-rustyline-9+default-dev <!nocheck>,
|
||||||
librust-serde-1+default-dev <!nocheck>,
|
librust-serde-1+default-dev <!nocheck>,
|
||||||
librust-serde-json-1+default-dev <!nocheck>,
|
librust-serde-json-1+default-dev <!nocheck>,
|
||||||
librust-tokio-1+default-dev (>= 1.6-~~) <!nocheck>,
|
librust-tokio-1+default-dev (>= 1.6-~~) <!nocheck>,
|
||||||
librust-unicode-width-0.1+default-dev (>= 0.1.8-~~) <!nocheck>
|
librust-unicode-width-0.1+default-dev (>= 0.1.8-~~) <!nocheck>
|
||||||
Maintainer: Proxmox Support Team <support@proxmox.com>
|
Maintainer: Proxmox Support Team <support@proxmox.com>
|
||||||
Standards-Version: 4.6.1
|
Standards-Version: 4.6.2
|
||||||
Vcs-Git: git://git.proxmox.com/git/proxmox.git
|
Vcs-Git: git://git.proxmox.com/git/proxmox.git
|
||||||
Vcs-Browser: https://git.proxmox.com/?p=proxmox.git
|
Vcs-Browser: https://git.proxmox.com/?p=proxmox.git
|
||||||
X-Cargo-Crate: proxmox-router
|
X-Cargo-Crate: proxmox-router
|
||||||
@ -41,7 +41,7 @@ Depends:
|
|||||||
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~),
|
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~),
|
||||||
librust-proxmox-http-error-0.1+default-dev,
|
librust-proxmox-http-error-0.1+default-dev,
|
||||||
librust-proxmox-lang-1+default-dev (>= 1.1-~~),
|
librust-proxmox-lang-1+default-dev (>= 1.1-~~),
|
||||||
librust-proxmox-schema-2+default-dev,
|
librust-proxmox-schema-3+default-dev,
|
||||||
librust-serde-1+default-dev,
|
librust-serde-1+default-dev,
|
||||||
librust-serde-json-1+default-dev,
|
librust-serde-json-1+default-dev,
|
||||||
librust-unicode-width-0.1+default-dev (>= 0.1.8-~~)
|
librust-unicode-width-0.1+default-dev (>= 0.1.8-~~)
|
||||||
@ -54,10 +54,9 @@ Suggests:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-router-2-dev (= ${binary:Version}),
|
librust-proxmox-router-2-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1-dev (= ${binary:Version}),
|
librust-proxmox-router-2.1-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1.2-dev (= ${binary:Version})
|
librust-proxmox-router-2.1.3-dev (= ${binary:Version})
|
||||||
Description: Proxmox API Router and CLI utilities - Rust source code
|
Description: Proxmox API Router and CLI utilities - Rust source code
|
||||||
This package contains the source for the Rust proxmox-router crate, packaged by
|
Source code for Debianized Rust crate "proxmox-router"
|
||||||
debcargo for use with cargo and dh-cargo.
|
|
||||||
|
|
||||||
Package: librust-proxmox-router+cli-dev
|
Package: librust-proxmox-router+cli-dev
|
||||||
Architecture: any
|
Architecture: any
|
||||||
@ -72,7 +71,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-router-2+cli-dev (= ${binary:Version}),
|
librust-proxmox-router-2+cli-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1+cli-dev (= ${binary:Version}),
|
librust-proxmox-router-2.1+cli-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1.2+cli-dev (= ${binary:Version})
|
librust-proxmox-router-2.1.3+cli-dev (= ${binary:Version})
|
||||||
Description: Proxmox API Router and CLI utilities - feature "cli"
|
Description: Proxmox API Router and CLI utilities - feature "cli"
|
||||||
This metapackage enables feature "cli" for the Rust proxmox-router crate, by
|
This metapackage enables feature "cli" for the Rust proxmox-router crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
@ -88,7 +87,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-router-2+default-dev (= ${binary:Version}),
|
librust-proxmox-router-2+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1+default-dev (= ${binary:Version}),
|
librust-proxmox-router-2.1+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1.2+default-dev (= ${binary:Version})
|
librust-proxmox-router-2.1.3+default-dev (= ${binary:Version})
|
||||||
Description: Proxmox API Router and CLI utilities - feature "default"
|
Description: Proxmox API Router and CLI utilities - feature "default"
|
||||||
This metapackage enables feature "default" for the Rust proxmox-router crate,
|
This metapackage enables feature "default" for the Rust proxmox-router crate,
|
||||||
by pulling in any additional dependencies needed by that feature.
|
by pulling in any additional dependencies needed by that feature.
|
||||||
@ -105,7 +104,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-router-2+server-dev (= ${binary:Version}),
|
librust-proxmox-router-2+server-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1+server-dev (= ${binary:Version}),
|
librust-proxmox-router-2.1+server-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1.2+server-dev (= ${binary:Version})
|
librust-proxmox-router-2.1.3+server-dev (= ${binary:Version})
|
||||||
Description: Proxmox API Router and CLI utilities - feature "server"
|
Description: Proxmox API Router and CLI utilities - feature "server"
|
||||||
This metapackage enables feature "server" for the Rust proxmox-router crate, by
|
This metapackage enables feature "server" for the Rust proxmox-router crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
@ -116,11 +115,11 @@ Multi-Arch: same
|
|||||||
Depends:
|
Depends:
|
||||||
${misc:Depends},
|
${misc:Depends},
|
||||||
librust-proxmox-router-dev (= ${binary:Version}),
|
librust-proxmox-router-dev (= ${binary:Version}),
|
||||||
librust-proxmox-schema-2+test-harness-dev
|
librust-proxmox-schema-3+test-harness-dev
|
||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-router-2+test-harness-dev (= ${binary:Version}),
|
librust-proxmox-router-2+test-harness-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1+test-harness-dev (= ${binary:Version}),
|
librust-proxmox-router-2.1+test-harness-dev (= ${binary:Version}),
|
||||||
librust-proxmox-router-2.1.2+test-harness-dev (= ${binary:Version})
|
librust-proxmox-router-2.1.3+test-harness-dev (= ${binary:Version})
|
||||||
Description: Proxmox API Router and CLI utilities - feature "test-harness"
|
Description: Proxmox API Router and CLI utilities - feature "test-harness"
|
||||||
This metapackage enables feature "test-harness" for the Rust proxmox-router
|
This metapackage enables feature "test-harness" for the Rust proxmox-router
|
||||||
crate, by pulling in any additional dependencies needed by that feature.
|
crate, by pulling in any additional dependencies needed by that feature.
|
||||||
|
Loading…
Reference in New Issue
Block a user