]> git.proxmox.com Git - proxmox.git/blob - proxmox-tools/Cargo.toml
build: switch to debcargo
[proxmox.git] / proxmox-tools / Cargo.toml
1 [package]
2 name = "proxmox-tools"
3 edition = "2018"
4 version = "0.1.1"
5 authors = [
6 "Dietmar Maurer <dietmar@proxmox.com>",
7 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
8 ]
9 license = "AGPL-3"
10 description = "Proxmox tools"
11
12 exclude = [ "debian" ]
13
14 [dependencies]
15 base64 = "0.10"
16 chrono = "0.4"
17 endian_trait = { version = "0.6", features = ["arrays"] }
18 failure = "0.1"
19 lazy_static = "1.4"
20 libc = "0.2"
21 nix = "0.16"
22 regex = "1.2"
23 serde = { version = "1.0", features = ["derive"] }
24 serde_json = "1.0"
25 valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
26
27 [features]
28 default = []
29 valgrind = [ "valgrind_request" ]
30
31 # Docs should be able to reference the proxmox crate.
32 [dev-dependencies]
33 proxmox = { path = "../proxmox" }