]> git.proxmox.com Git - pve-lxc-syscalld.git/blobdiff - Cargo.toml
update to tokio 1.0
[pve-lxc-syscalld.git] / Cargo.toml
index f4544b0a512e3abcb76d21626baf7d5c1ac3cb96..a337d444afc7724b173f008454c74444b29ce079 100644 (file)
@@ -1,16 +1,20 @@
 [package]
 name = "pve-lxc-syscalld"
 edition = "2018"
-version = "0.1.0"
+version = "0.9.1"
 authors = [
     "Wolfgang Bumiller <w.bumiller@proxmox.com>",
 ]
+license = "AGPL-3"
+description = "Proxmox LXC seccomp-proxy syscall handler daemon"
+homepage = "https://www.proxmox.com"
+
+exclude = [ "build", "debian" ]
 
 [dependencies]
-errno = "0.2"
-failure = "0.1"
+bitflags = "1.2"
+anyhow = "1.0"
+lazy_static = "1.4"
 libc = "0.2"
-mio = "0.6"
-nix = "0.14"
-futures-preview = { version = "0.3.0-alpha.17", features = [ "compat", "io-compat" ] }
-tokio = { version = "0.2", git = "https://github.com/tokio-rs/tokio" }
+nix = "0.19"
+tokio = { version = "1.0", features = [ "rt-multi-thread", "io-util", "net" ] }