forked from proxmox/proxmox-ve-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
members = [
"proxmox-ve-config",
"proxmox-frr",
"proxmox-sdn-types",
]
exclude = [
"build",
]
resolver = "2"
[workspace.package]
authors = ["Proxmox Support Team <support@proxmox.com>"]
edition = "2021"
license = "AGPL-3"
homepage = "https://proxmox.com"
exclude = [ "debian" ]
rust-version = "1.82"
[workspace.dependencies]
anyhow = "1"
const_format = "0.2"
regex = "1.7"
serde = { version = "1" }
thiserror = "2.0.0"
proxmox-frr = { version = "0.3", path = "proxmox-frr" }
proxmox-network-types = { git = "https://github.com/AOSC-Tracking/proxmox", package = "proxmox-network-types", rev = "0d7535f9ba84f2995a6fe5fd82870c9c149234cc" }
proxmox-schema = { git = "https://github.com/AOSC-Tracking/proxmox", package = "proxmox-schema", rev = "0d7535f9ba84f2995a6fe5fd82870c9c149234cc" }
proxmox-sdn-types = { version = "0.2", path = "proxmox-sdn-types" }
proxmox-serde = { git = "https://github.com/AOSC-Tracking/proxmox", package = "proxmox-serde", rev = "0d7535f9ba84f2995a6fe5fd82870c9c149234cc" }