]> git.proxmox.com Git - proxmox-backup-qemu.git/commitdiff
Cargo.toml: sort dependencies
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 12 Aug 2020 07:30:22 +0000 (09:30 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 12 Aug 2020 07:30:22 +0000 (09:30 +0200)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Cargo.toml

index 0d1491ded286262d4493bd73435eb92bf2ee3ba3..8f1fbab39b8577995b0beef6088489af7600f9ee 100644 (file)
@@ -15,18 +15,17 @@ crate-type = ['lib', 'cdylib', 'staticlib']
 cbindgen = "0.14.2"
 
 [dependencies]
-libc = "0.2"
+anyhow = "1.0"
 bytes = "0.5"
-proxmox = { version = "0.2", features = [ "sortable-macro", "api-macro" ] }
-proxmox-backup = { git = "git://git.proxmox.com/git/proxmox-backup.git", tag = "v0.8.8" }
-#proxmox-backup = { path = "../proxmox-backup" }
 chrono = "0.4" # Date and time library for Rust
-anyhow = "1.0"
 futures = "0.3"
-serde_json = "1.0"
-tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
-openssl = "0.10"
 h2 = { version = "0.2", features = ["stream"] }
 lazy_static = "1.4"
+libc = "0.2"
 once_cell = "1.3.1"
-
+openssl = "0.10"
+proxmox = { version = "0.2", features = [ "sortable-macro", "api-macro" ] }
+proxmox-backup = { git = "git://git.proxmox.com/git/proxmox-backup.git", tag = "v0.8.8" }
+#proxmox-backup = { path = "../proxmox-backup" }
+serde_json = "1.0"
+tokio = { version = "0.2.9", features = [ "blocking", "fs", "io-util", "macros", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }