bump version to 0.9.2-1, depend on proxmox-sys 0.2

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer 2021-11-23 12:38:34 +01:00
parent d6e7e2599f
commit a92d77bf1f
4 changed files with 15 additions and 11 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "proxmox-openid"
version = "0.9.1"
version = "0.9.2"
authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
edition = "2018"
license = "AGPL-3"
@ -24,5 +24,5 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.1"
proxmox = "0.15.0"
proxmox-time = "1"
proxmox-sys = "0.2"

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
rust-proxmox-openid (0.9.2-1) stable; urgency=medium
* depend on proxmox-sys 0.2
-- Proxmox Support Team <support@proxmox.com> Tue, 23 Nov 2021 12:35:41 +0100
rust-proxmox-openid (0.9.1-1) unstable; urgency=medium
* rebuild with openidconnect 0.2.1

4
debian/control vendored
View File

@ -11,7 +11,7 @@ Build-Depends: debhelper (>= 12),
librust-http-0.2+default-dev <!nocheck>,
librust-nix-0.19+default-dev (>= 0.19.1-~~) <!nocheck>,
librust-openidconnect-2+curl-dev (>= 2.1-~~) <!nocheck>,
librust-proxmox-0.15+default-dev <!nocheck>,
librust-proxmox-sys-0.2+default-dev <!nocheck>,
librust-proxmox-time-1+default-dev <!nocheck>,
librust-serde-1+default-dev <!nocheck>,
librust-serde-1+derive-dev <!nocheck>,
@ -33,7 +33,7 @@ Depends:
librust-http-0.2+default-dev,
librust-nix-0.19+default-dev (>= 0.19.1-~~),
librust-openidconnect-2+curl-dev (>= 2.1-~~),
librust-proxmox-0.15+default-dev,
librust-proxmox-sys-0.2+default-dev,
librust-proxmox-time-1+default-dev,
librust-serde-1+default-dev,
librust-serde-1+derive-dev,

View File

@ -3,13 +3,11 @@ use std::path::{Path, PathBuf};
use anyhow::{bail, Error};
use serde_json::{json, Value};
use proxmox::tools::{
fs::{
replace_file,
open_file_locked,
file_get_json,
CreateOptions,
},
use proxmox_sys::fs::{
replace_file,
open_file_locked,
file_get_json,
CreateOptions,
};
use proxmox_time::epoch_i64;