diff --git a/proxmox-router/debian/control b/proxmox-router/debian/control index 315e036d..586fe48f 100644 --- a/proxmox-router/debian/control +++ b/proxmox-router/debian/control @@ -11,6 +11,7 @@ Build-Depends: debhelper (>= 12), librust-hyper-0.14+default-dev , librust-hyper-0.14+full-dev , librust-libc-0.2+default-dev , + librust-nix-0.19+default-dev (>= 0.19.1-~~) , librust-percent-encoding-2+default-dev (>= 2.1-~~) , librust-proxmox-lang-1+default-dev , librust-proxmox-schema-1+default-dev , @@ -33,6 +34,7 @@ Depends: librust-http-0.2+default-dev, librust-hyper-0.14+default-dev, librust-hyper-0.14+full-dev, + librust-nix-0.19+default-dev (>= 0.19.1-~~), librust-percent-encoding-2+default-dev (>= 2.1-~~), librust-proxmox-lang-1+default-dev, librust-proxmox-schema-1+default-dev, @@ -47,8 +49,8 @@ Suggests: librust-proxmox-router+tokio-dev (= ${binary:Version}) Provides: librust-proxmox-router-1-dev (= ${binary:Version}), - librust-proxmox-router-1.0-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0-dev (= ${binary:Version}) + librust-proxmox-router-1.1-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0-dev (= ${binary:Version}) Description: Proxmox API Router and CLI utilities - Rust source code This package contains the source for the Rust proxmox-router crate, packaged by debcargo for use with cargo and dh-cargo. @@ -66,10 +68,10 @@ Provides: librust-proxmox-router+default-dev (= ${binary:Version}), librust-proxmox-router-1+cli-dev (= ${binary:Version}), librust-proxmox-router-1+default-dev (= ${binary:Version}), - librust-proxmox-router-1.0+cli-dev (= ${binary:Version}), - librust-proxmox-router-1.0+default-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+cli-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+default-dev (= ${binary:Version}) + librust-proxmox-router-1.1+cli-dev (= ${binary:Version}), + librust-proxmox-router-1.1+default-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+cli-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+default-dev (= ${binary:Version}) Description: Proxmox API Router and CLI utilities - feature "cli" and 1 more This metapackage enables feature "cli" for the Rust proxmox-router crate, by pulling in any additional dependencies needed by that feature. @@ -85,8 +87,8 @@ Depends: librust-libc-0.2+default-dev Provides: librust-proxmox-router-1+libc-dev (= ${binary:Version}), - librust-proxmox-router-1.0+libc-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+libc-dev (= ${binary:Version}) + librust-proxmox-router-1.1+libc-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+libc-dev (= ${binary:Version}) Description: Proxmox API Router and CLI utilities - feature "libc" This metapackage enables feature "libc" for the Rust proxmox-router crate, by pulling in any additional dependencies needed by that feature. @@ -100,8 +102,8 @@ Depends: librust-rustyline-7+default-dev Provides: librust-proxmox-router-1+rustyline-dev (= ${binary:Version}), - librust-proxmox-router-1.0+rustyline-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+rustyline-dev (= ${binary:Version}) + librust-proxmox-router-1.1+rustyline-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+rustyline-dev (= ${binary:Version}) Description: Proxmox API Router and CLI utilities - feature "rustyline" This metapackage enables feature "rustyline" for the Rust proxmox-router crate, by pulling in any additional dependencies needed by that feature. @@ -115,8 +117,8 @@ Depends: librust-proxmox-schema-1+test-harness-dev Provides: librust-proxmox-router-1+test-harness-dev (= ${binary:Version}), - librust-proxmox-router-1.0+test-harness-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+test-harness-dev (= ${binary:Version}) + librust-proxmox-router-1.1+test-harness-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+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. @@ -130,8 +132,8 @@ Depends: librust-tokio-1+default-dev Provides: librust-proxmox-router-1+tokio-dev (= ${binary:Version}), - librust-proxmox-router-1.0+tokio-dev (= ${binary:Version}), - librust-proxmox-router-1.0.0+tokio-dev (= ${binary:Version}) + librust-proxmox-router-1.1+tokio-dev (= ${binary:Version}), + librust-proxmox-router-1.1.0+tokio-dev (= ${binary:Version}) Description: Proxmox API Router and CLI utilities - feature "tokio" This metapackage enables feature "tokio" for the Rust proxmox-router crate, by pulling in any additional dependencies needed by that feature. diff --git a/proxmox/Cargo.toml b/proxmox/Cargo.toml index 303e4f45..9444508f 100644 --- a/proxmox/Cargo.toml +++ b/proxmox/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "proxmox" edition = "2018" -version = "0.14.0" +version = "0.15.0" authors = [ "Dietmar Maurer ", "Wolfgang Bumiller ", diff --git a/proxmox/debian/changelog b/proxmox/debian/changelog index b7495f6b..95755462 100644 --- a/proxmox/debian/changelog +++ b/proxmox/debian/changelog @@ -1,3 +1,11 @@ +rust-proxmox (0.15.0-0) unstable; urgency=medium + + * add fsync parameter to replace_file and atomic_open_or_create + + * add filename completions helper (moved from pbs-tools) + + -- Proxmox Support Team Thu, 21 Oct 2021 07:02:17 +0200 + rust-proxmox (0.14.0-1) stable; urgency=medium * remove several modules moved into their own crates: