use workspace dependencies
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
c7c3940718
commit
29181c7a0e
27
Cargo.toml
27
Cargo.toml
@ -5,6 +5,33 @@ members = [
|
|||||||
"pmg-rs",
|
"pmg-rs",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
anyhow = "1.0"
|
||||||
|
base32 = "0.4"
|
||||||
|
base64 = "0.13"
|
||||||
|
env_logger = "0.9"
|
||||||
|
hex = "0.4"
|
||||||
|
http = "0.2.7"
|
||||||
|
libc = "0.2"
|
||||||
|
nix = "0.26"
|
||||||
|
openssl = "0.10.40"
|
||||||
|
serde = "1.0"
|
||||||
|
serde_bytes = "0.11"
|
||||||
|
serde_json = "1.0"
|
||||||
|
url = "2"
|
||||||
|
|
||||||
|
perlmod = { version = "0.13", features = [ "exporter" ] }
|
||||||
|
|
||||||
|
proxmox-acme-rs = { version = "0.4", features = ["client"] }
|
||||||
|
proxmox-apt = "0.9"
|
||||||
|
proxmox-http = { version = "0.8", features = ["client-sync", "client-trait"] }
|
||||||
|
proxmox-openid = "0.9.8"
|
||||||
|
proxmox-resource-scheduling = "0.1"
|
||||||
|
proxmox-subscription = "0.3"
|
||||||
|
proxmox-sys = "0.4.2"
|
||||||
|
proxmox-tfa = { version = "3", features = ["api"] }
|
||||||
|
proxmox-time = "1.1.3"
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
# proxmox-tfa requires -time and -uuid as well, so enable *all* or *none* of them
|
# proxmox-tfa requires -time and -uuid as well, so enable *all* or *none* of them
|
||||||
#proxmox-tfa = { path = "../proxmox/proxmox-tfa" }
|
#proxmox-tfa = { path = "../proxmox/proxmox-tfa" }
|
||||||
|
1
Makefile
1
Makefile
@ -37,6 +37,7 @@ build:
|
|||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
echo system >build/rust-toolchain
|
echo system >build/rust-toolchain
|
||||||
|
cp -a ./Cargo.toml ./build
|
||||||
cp -a ./scripts ./build
|
cp -a ./scripts ./build
|
||||||
cp -a ./common ./build
|
cp -a ./common ./build
|
||||||
cp -a ./pve-rs ./build
|
cp -a ./pve-rs ./build
|
||||||
|
@ -19,24 +19,24 @@ exclude = [
|
|||||||
crate-type = [ "cdylib" ]
|
crate-type = [ "cdylib" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow.workspace = true
|
||||||
env_logger = "0.9"
|
env_logger.workspace = true
|
||||||
hex = "0.4"
|
hex.workspace = true
|
||||||
http = "0.2.7"
|
http.workspace = true
|
||||||
libc = "0.2"
|
libc.workspace = true
|
||||||
nix = "0.26"
|
nix.workspace = true
|
||||||
openssl = "0.10.40"
|
openssl.workspace = true
|
||||||
serde = "1.0"
|
serde.workspace = true
|
||||||
serde_bytes = "0.11.3"
|
serde_bytes.workspace = true
|
||||||
serde_json = "1.0"
|
serde_json.workspace = true
|
||||||
url = "2"
|
url.workspace = true
|
||||||
|
|
||||||
perlmod = { version = "0.13", features = [ "exporter" ] }
|
perlmod.workspace = true
|
||||||
|
|
||||||
proxmox-acme-rs = { version = "0.4", features = ["client"] }
|
proxmox-acme-rs.workspace = true
|
||||||
proxmox-apt = "0.9"
|
proxmox-apt.workspace = true
|
||||||
proxmox-http = { version = "0.7", features = ["client-sync", "client-trait"] }
|
proxmox-http.workspace = true
|
||||||
proxmox-subscription = "0.3"
|
proxmox-subscription.workspace = true
|
||||||
proxmox-sys = "0.4.2"
|
proxmox-sys.workspace = true
|
||||||
proxmox-tfa = { version = "2.1", features = ["api"] }
|
proxmox-tfa.workspace = true
|
||||||
proxmox-time = "1.1.3"
|
proxmox-time.workspace = true
|
||||||
|
@ -15,27 +15,27 @@ exclude = [
|
|||||||
crate-type = [ "cdylib" ]
|
crate-type = [ "cdylib" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow.workspace = true
|
||||||
base32 = "0.4"
|
base32.workspace = true
|
||||||
base64 = "0.13"
|
base64.workspace = true
|
||||||
env_logger = "0.9"
|
env_logger.workspace = true
|
||||||
hex = "0.4"
|
hex.workspace = true
|
||||||
http = "0.2.7"
|
http.workspace = true
|
||||||
libc = "0.2"
|
libc.workspace = true
|
||||||
nix = "0.26"
|
nix.workspace = true
|
||||||
openssl = "0.10.40"
|
openssl.workspace = true
|
||||||
serde = "1.0"
|
serde.workspace = true
|
||||||
serde_bytes = "0.11"
|
serde_bytes.workspace = true
|
||||||
serde_json = "1.0"
|
serde_json.workspace = true
|
||||||
url = "2"
|
url.workspace = true
|
||||||
|
|
||||||
perlmod = { version = "0.13", features = [ "exporter" ] }
|
perlmod.workspace = true
|
||||||
|
|
||||||
proxmox-apt = "0.9"
|
proxmox-apt.workspace = true
|
||||||
proxmox-http = { version = "0.7", features = ["client-sync", "client-trait"] }
|
proxmox-http.workspace = true
|
||||||
proxmox-openid = "0.9.8"
|
proxmox-openid.workspace = true
|
||||||
proxmox-resource-scheduling = "0.1"
|
proxmox-resource-scheduling.workspace = true
|
||||||
proxmox-subscription = "0.3"
|
proxmox-subscription.workspace = true
|
||||||
proxmox-sys = "0.4.2"
|
proxmox-sys.workspace = true
|
||||||
proxmox-tfa = { version = "2.1", features = ["api"] }
|
proxmox-tfa.workspace = true
|
||||||
proxmox-time = "1.1.3"
|
proxmox-time.workspace = true
|
||||||
|
Loading…
Reference in New Issue
Block a user