]> git.proxmox.com Git - pve-lxc-syscalld.git/blobdiff - Cargo.toml
update nix to 0.26
[pve-lxc-syscalld.git] / Cargo.toml
index d33f076658dcd363ffcb3b8f9cc14b9174e468f6..010b5c2e276ed2c03cd0abf4395e472e7d6f9c2b 100644 (file)
@@ -1,19 +1,23 @@
 [package]
 name = "pve-lxc-syscalld"
-edition = "2018"
-version = "0.1.0"
+edition = "2021"
+version = "1.2.2"
 authors = [
     "Wolfgang Bumiller <w.bumiller@proxmox.com>",
 ]
+license = "AGPL-3"
+description = "Proxmox LXC seccomp-proxy syscall handler daemon"
+homepage = "https://www.proxmox.com"
+
+rust-version = "1.64"
+
+exclude = [ "build", "debian" ]
 
 [dependencies]
-bitflags = "1.1"
-errno = "0.2"
-failure = "0.1"
-lazy_static = "1.3"
+anyhow = "1.0"
+bitflags = "1.2"
+lazy_static = "1.4"
 libc = "0.2"
-mio = "0.6"
-nix = "0.14"
-futures-preview = "0.3.0-alpha"
-tokio = "0.2.0-alpha.6"
-tokio-net = "0.2.0-alpha.6"
+nix = "0.26"
+num_cpus = "1"
+tokio = { version = "1.0", features = [ "rt-multi-thread", "io-util", "net" ] }