mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-06 13:40:40 +00:00
bump proxmox-tfa to 1.3.0-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
313d0a6b88
commit
bbdfd8ede9
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "proxmox-tfa"
|
name = "proxmox-tfa"
|
||||||
version = "1.2.0"
|
version = "1.3.0"
|
||||||
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
authors = ["Proxmox Support Team <support@proxmox.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "AGPL-3"
|
license = "AGPL-3"
|
||||||
@ -20,9 +20,9 @@ serde_plain = "1.0"
|
|||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
libc = { version = "0.2", optional = true }
|
libc = { version = "0.2", optional = true }
|
||||||
|
|
||||||
proxmox-schema = { path = "../proxmox-schema", features = [ "api-macro" ], optional = true }
|
proxmox-schema = { version = "1", path = "../proxmox-schema", features = [ "api-macro" ], optional = true }
|
||||||
proxmox-time = { path = "../proxmox-time", optional = true }
|
proxmox-time = { version = "1", path = "../proxmox-time", optional = true }
|
||||||
proxmox-uuid = { path = "../proxmox-uuid", optional = true }
|
proxmox-uuid = { version = "1", path = "../proxmox-uuid", optional = true }
|
||||||
webauthn-rs = { version = "0.2.5", optional = true }
|
webauthn-rs = { version = "0.2.5", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
rust-proxmox-tfa (1.3.0-1) stable; urgency=medium
|
||||||
|
|
||||||
|
* add tfa API entry points and optional api-type/schema generation
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Wed, 17 Nov 2021 09:27:33 +0100
|
||||||
|
|
||||||
rust-proxmox-tfa (1.2.0-1) stable; urgency=medium
|
rust-proxmox-tfa (1.2.0-1) stable; urgency=medium
|
||||||
|
|
||||||
* make u2f::AuthChallenge Clone + Debug
|
* make u2f::AuthChallenge Clone + Debug
|
||||||
|
@ -34,21 +34,66 @@ Depends:
|
|||||||
librust-serde-1+default-dev,
|
librust-serde-1+default-dev,
|
||||||
librust-serde-plain-1+default-dev
|
librust-serde-plain-1+default-dev
|
||||||
Suggests:
|
Suggests:
|
||||||
|
librust-proxmox-tfa+api-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa+api-types-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa+libc-dev (= ${binary:Version}),
|
librust-proxmox-tfa+libc-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa+proxmox-time-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa+proxmox-uuid-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa+serde-json-dev (= ${binary:Version}),
|
librust-proxmox-tfa+serde-json-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa+u2f-dev (= ${binary:Version})
|
librust-proxmox-tfa+u2f-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa+webauthn-rs-dev (= ${binary:Version})
|
||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-tfa+default-dev (= ${binary:Version}),
|
librust-proxmox-tfa+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1+default-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2+default-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3+default-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2.0-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3.0-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2.0+default-dev (= ${binary:Version})
|
librust-proxmox-tfa-1.3.0+default-dev (= ${binary:Version})
|
||||||
Description: Tfa implementation for totp and u2f - Rust source code
|
Description: Tfa implementation for totp and u2f - Rust source code
|
||||||
This package contains the source for the Rust proxmox-tfa crate, packaged by
|
This package contains the source for the Rust proxmox-tfa crate, packaged by
|
||||||
debcargo for use with cargo and dh-cargo.
|
debcargo for use with cargo and dh-cargo.
|
||||||
|
|
||||||
|
Package: librust-proxmox-tfa+api-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-tfa-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa+u2f-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-time-1+default-dev,
|
||||||
|
librust-proxmox-uuid-1+default-dev,
|
||||||
|
librust-webauthn-rs-0.2+default-dev (>= 0.2.5-~~)
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-tfa-1+api-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+api-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+api-dev (= ${binary:Version})
|
||||||
|
Description: Tfa implementation for totp and u2f - feature "api"
|
||||||
|
This metapackage enables feature "api" for the Rust proxmox-tfa crate, by
|
||||||
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
|
Package: librust-proxmox-tfa+api-types-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-tfa-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-schema-1+api-macro-dev,
|
||||||
|
librust-proxmox-schema-1+default-dev
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-tfa+proxmox-schema-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1+api-types-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1+proxmox-schema-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+api-types-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+proxmox-schema-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+api-types-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+proxmox-schema-dev (= ${binary:Version})
|
||||||
|
Description: Tfa implementation for totp and u2f - feature "api-types" and 1 more
|
||||||
|
This metapackage enables feature "api-types" for the Rust proxmox-tfa crate, by
|
||||||
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
.
|
||||||
|
Additionally, this package also provides the "proxmox-schema" feature.
|
||||||
|
|
||||||
Package: librust-proxmox-tfa+libc-dev
|
Package: librust-proxmox-tfa+libc-dev
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Multi-Arch: same
|
Multi-Arch: same
|
||||||
@ -58,12 +103,42 @@ Depends:
|
|||||||
librust-libc-0.2+default-dev
|
librust-libc-0.2+default-dev
|
||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-tfa-1+libc-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1+libc-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2+libc-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3+libc-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2.0+libc-dev (= ${binary:Version})
|
librust-proxmox-tfa-1.3.0+libc-dev (= ${binary:Version})
|
||||||
Description: Tfa implementation for totp and u2f - feature "libc"
|
Description: Tfa implementation for totp and u2f - feature "libc"
|
||||||
This metapackage enables feature "libc" for the Rust proxmox-tfa crate, by
|
This metapackage enables feature "libc" for the Rust proxmox-tfa crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
|
Package: librust-proxmox-tfa+proxmox-time-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-tfa-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-time-1+default-dev
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-tfa-1+proxmox-time-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+proxmox-time-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+proxmox-time-dev (= ${binary:Version})
|
||||||
|
Description: Tfa implementation for totp and u2f - feature "proxmox-time"
|
||||||
|
This metapackage enables feature "proxmox-time" for the Rust proxmox-tfa crate,
|
||||||
|
by pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
|
Package: librust-proxmox-tfa+proxmox-uuid-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-tfa-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-uuid-1+default-dev
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-tfa-1+proxmox-uuid-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+proxmox-uuid-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+proxmox-uuid-dev (= ${binary:Version})
|
||||||
|
Description: Tfa implementation for totp and u2f - feature "proxmox-uuid"
|
||||||
|
This metapackage enables feature "proxmox-uuid" for the Rust proxmox-tfa crate,
|
||||||
|
by pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
Package: librust-proxmox-tfa+serde-json-dev
|
Package: librust-proxmox-tfa+serde-json-dev
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Multi-Arch: same
|
Multi-Arch: same
|
||||||
@ -73,8 +148,8 @@ Depends:
|
|||||||
librust-serde-json-1+default-dev
|
librust-serde-json-1+default-dev
|
||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-tfa-1+serde-json-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1+serde-json-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2+serde-json-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3+serde-json-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2.0+serde-json-dev (= ${binary:Version})
|
librust-proxmox-tfa-1.3.0+serde-json-dev (= ${binary:Version})
|
||||||
Description: Tfa implementation for totp and u2f - feature "serde_json"
|
Description: Tfa implementation for totp and u2f - feature "serde_json"
|
||||||
This metapackage enables feature "serde_json" for the Rust proxmox-tfa crate,
|
This metapackage enables feature "serde_json" for the Rust proxmox-tfa crate,
|
||||||
by pulling in any additional dependencies needed by that feature.
|
by pulling in any additional dependencies needed by that feature.
|
||||||
@ -90,8 +165,23 @@ Depends:
|
|||||||
librust-serde-json-1+default-dev
|
librust-serde-json-1+default-dev
|
||||||
Provides:
|
Provides:
|
||||||
librust-proxmox-tfa-1+u2f-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1+u2f-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2+u2f-dev (= ${binary:Version}),
|
librust-proxmox-tfa-1.3+u2f-dev (= ${binary:Version}),
|
||||||
librust-proxmox-tfa-1.2.0+u2f-dev (= ${binary:Version})
|
librust-proxmox-tfa-1.3.0+u2f-dev (= ${binary:Version})
|
||||||
Description: Tfa implementation for totp and u2f - feature "u2f"
|
Description: Tfa implementation for totp and u2f - feature "u2f"
|
||||||
This metapackage enables feature "u2f" for the Rust proxmox-tfa crate, by
|
This metapackage enables feature "u2f" for the Rust proxmox-tfa crate, by
|
||||||
pulling in any additional dependencies needed by that feature.
|
pulling in any additional dependencies needed by that feature.
|
||||||
|
|
||||||
|
Package: librust-proxmox-tfa+webauthn-rs-dev
|
||||||
|
Architecture: any
|
||||||
|
Multi-Arch: same
|
||||||
|
Depends:
|
||||||
|
${misc:Depends},
|
||||||
|
librust-proxmox-tfa-dev (= ${binary:Version}),
|
||||||
|
librust-webauthn-rs-0.2+default-dev (>= 0.2.5-~~)
|
||||||
|
Provides:
|
||||||
|
librust-proxmox-tfa-1+webauthn-rs-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3+webauthn-rs-dev (= ${binary:Version}),
|
||||||
|
librust-proxmox-tfa-1.3.0+webauthn-rs-dev (= ${binary:Version})
|
||||||
|
Description: Tfa implementation for totp and u2f - feature "webauthn-rs"
|
||||||
|
This metapackage enables feature "webauthn-rs" for the Rust proxmox-tfa crate,
|
||||||
|
by pulling in any additional dependencies needed by that feature.
|
||||||
|
Loading…
Reference in New Issue
Block a user