]> git.proxmox.com Git - proxmox.git/blobdiff - proxmox-sys/Cargo.toml
bump proxmox-sys to 0.5.3-1
[proxmox.git] / proxmox-sys / Cargo.toml
index e8deba17c2808dcd8bd56b5952870423c17acafb..5ddbe2126ef174b4b80b764034add418fa187966 100644 (file)
@@ -1,20 +1,33 @@
 [package]
 name = "proxmox-sys"
-edition = "2018"
-version = "0.1.0"
-authors = [
-    "Dietmar Maurer <dietmar@proxmox.com>",
-    "Wolfgang Bumiller <w.bumiller@proxmox.com>",
-]
+version = "0.5.3"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
+description = "System tools (using nix)."
+
+exclude.workspace = true
 
 [dependencies]
-failure = "0.1"
-lazy_static = "1.1"
-libc = "0.2"
-nix = "0.14"
-proxmox-tools = { path = "../proxmox-tools" }
-regex = "1.0"
+anyhow.workspace = true
+base64.workspace = true
+lazy_static.workspace = true
+libc.workspace = true
+log.workspace = true
+nix.workspace = true
+regex.workspace = true
+serde_json.workspace = true
+serde = { workspace = true, features = [ "derive" ] }
+zstd = { workspace = true, optional = true}
+
+proxmox-io.workspace = true
+proxmox-lang.workspace = true
+proxmox-time.workspace = true
 
-# Docs should be able to reference the proxmox crate.
-[dev-dependencies]
-proxmox = { path = "../proxmox" }
+[features]
+default = []
+logrotate = ["dep:zstd"]
+acl = []
+crypt = []
+timer = []