mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-02 12:11:40 +00:00
bump proxmox-acme to 0.5.1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
fbb3049768
commit
c67a13f1d7
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-acme"
|
name = "proxmox-acme"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
description = "ACME client library"
|
description = "ACME client library"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
rust-proxmox-acme (0.5.1) bookworm; urgency=medium
|
||||||
|
|
||||||
|
* add api-types feature to provide schemas for api types
|
||||||
|
|
||||||
|
* derive PartialEq for api types for integration in rust based ui code
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Thu, 07 Mar 2024 13:27:08 +0100
|
||||||
|
|
||||||
rust-proxmox-acme (0.5.0) bookworm; urgency=medium
|
rust-proxmox-acme (0.5.0) bookworm; urgency=medium
|
||||||
|
|
||||||
* add external account binding support
|
* add external account binding support
|
||||||
|
@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 12),
|
|||||||
librust-serde-1+derive-dev <!nocheck>,
|
librust-serde-1+derive-dev <!nocheck>,
|
||||||
librust-serde-json-1+default-dev <!nocheck>
|
librust-serde-json-1+default-dev <!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:
|
Vcs-Git:
|
||||||
Vcs-Browser:
|
Vcs-Browser:
|
||||||
Homepage: https://proxmox.com
|
Homepage: https://proxmox.com
|
||||||
@ -30,6 +30,7 @@ Depends:
|
|||||||
librust-serde-1+derive-dev,
|
librust-serde-1+derive-dev,
|
||||||
librust-serde-json-1+default-dev
|
librust-serde-json-1+default-dev
|
||||||
Suggests:
|
Suggests:
|
||||||
|
librust-proxmox-acme+api-types-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme+client-dev (= ${binary:Version}),
|
librust-proxmox-acme+client-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme+native-tls-dev (= ${binary:Version}),
|
librust-proxmox-acme+native-tls-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme+ureq-dev (= ${binary:Version})
|
librust-proxmox-acme+ureq-dev (= ${binary:Version})
|
||||||
@ -39,11 +40,26 @@ Provides:
|
|||||||
librust-proxmox-acme-0+default-dev (= ${binary:Version}),
|
librust-proxmox-acme-0+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5+default-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5.0-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5.1-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5.0+default-dev (= ${binary:Version})
|
librust-proxmox-acme-0.5.1+default-dev (= ${binary:Version})
|
||||||
Description: ACME client library - Rust source code
|
Description: ACME client library - Rust source code
|
||||||
This package contains the source for the Rust proxmox-acme crate, packaged by
|
Source code for Debianized Rust crate "proxmox-acme"
|
||||||
debcargo for use with cargo and dh-cargo.
|
|
||||||
|
Package: librust-proxmox-acme+api-types-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-acme-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-schema-3+api-macro-dev,
|
||||||
|
librust-proxmox-schema-3+default-dev
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-acme-0+api-types-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-acme-0.5+api-types-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-acme-0.5.1+api-types-dev (= ${binary:Version})
|
||||||
|
Description: ACME client library - feature "api-types"
|
||||||
|
This metapackage enables feature "api-types" for the Rust proxmox-acme crate,
|
||||||
|
by pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
Package: librust-proxmox-acme+client-dev
|
Package: librust-proxmox-acme+client-dev
|
||||||
Architecture: any
|
Architecture: any
|
||||||
@ -56,7 +72,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-acme-0+client-dev (= ${binary:Version}),
|
librust-proxmox-acme-0+client-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5+client-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5+client-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5.0+client-dev (= ${binary:Version})
|
librust-proxmox-acme-0.5.1+client-dev (= ${binary:Version})
|
||||||
Description: ACME client library - feature "client"
|
Description: ACME client library - feature "client"
|
||||||
This metapackage enables feature "client" for the Rust proxmox-acme crate, by
|
This metapackage enables feature "client" for the Rust proxmox-acme crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
@ -71,7 +87,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-acme-0+native-tls-dev (= ${binary:Version}),
|
librust-proxmox-acme-0+native-tls-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5+native-tls-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5+native-tls-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5.0+native-tls-dev (= ${binary:Version})
|
librust-proxmox-acme-0.5.1+native-tls-dev (= ${binary:Version})
|
||||||
Description: ACME client library - feature "native-tls"
|
Description: ACME client library - feature "native-tls"
|
||||||
This metapackage enables feature "native-tls" for the Rust proxmox-acme crate,
|
This metapackage enables feature "native-tls" for the Rust proxmox-acme crate,
|
||||||
by pulling in any additional dependencies needed by that feature.
|
by pulling in any additional dependencies needed by that feature.
|
||||||
@ -87,7 +103,7 @@ Depends:
|
|||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-acme-0+ureq-dev (= ${binary:Version}),
|
librust-proxmox-acme-0+ureq-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5+ureq-dev (= ${binary:Version}),
|
librust-proxmox-acme-0.5+ureq-dev (= ${binary:Version}),
|
||||||
librust-proxmox-acme-0.5.0+ureq-dev (= ${binary:Version})
|
librust-proxmox-acme-0.5.1+ureq-dev (= ${binary:Version})
|
||||||
Description: ACME client library - feature "ureq"
|
Description: ACME client library - feature "ureq"
|
||||||
This metapackage enables feature "ureq" for the Rust proxmox-acme crate, by
|
This metapackage enables feature "ureq" for the Rust proxmox-acme crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
Loading…
Reference in New Issue
Block a user