]> git.proxmox.com Git - proxmox-backup.git/blame_incremental - Cargo.toml
implement subscription handling and api
[proxmox-backup.git] / Cargo.toml
... / ...
CommitLineData
1[package]
2name = "proxmox-backup"
3version = "0.9.1"
4authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
5edition = "2018"
6license = "AGPL-3"
7description = "Proxmox Backup"
8homepage = "https://www.proxmox.com"
9
10exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
11
12[lib]
13name = "proxmox_backup"
14path = "src/lib.rs"
15
16[dependencies]
17apt-pkg-native = "0.3.1" # custom patched version
18base64 = "0.12"
19bitflags = "1.2.1"
20bytes = "0.5"
21crc32fast = "1"
22endian_trait = { version = "0.6", features = ["arrays"] }
23anyhow = "1.0"
24futures = "0.3"
25h2 = { version = "0.2", features = ["stream"] }
26handlebars = "3.0"
27http = "0.2"
28hyper = "0.13.6"
29lazy_static = "1.4"
30libc = "0.2"
31log = "0.4"
32nix = "0.19"
33num-traits = "0.2"
34once_cell = "1.3.1"
35openssl = "0.10"
36pam = "0.7"
37pam-sys = "0.5"
38percent-encoding = "2.1"
39pin-utils = "0.1.0"
40pathpatterns = "0.1.2"
41proxmox = { version = "0.5.0", features = [ "sortable-macro", "api-macro", "websocket" ] }
42#proxmox = { git = "git://git.proxmox.com/git/proxmox", version = "0.1.2", features = [ "sortable-macro", "api-macro" ] }
43#proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "websocket" ] }
44proxmox-fuse = "0.1.0"
45pxar = { version = "0.6.1", features = [ "tokio-io", "futures-io" ] }
46#pxar = { path = "../pxar", features = [ "tokio-io", "futures-io" ] }
47regex = "1.2"
48rustyline = "6"
49serde = { version = "1.0", features = ["derive"] }
50serde_json = "1.0"
51siphasher = "0.3"
52syslog = "4.0"
53tokio = { version = "0.2.9", features = [ "blocking", "fs", "dns", "io-util", "macros", "process", "rt-threaded", "signal", "stream", "tcp", "time", "uds" ] }
54tokio-openssl = "0.4.0"
55tokio-util = { version = "0.3", features = [ "codec" ] }
56tower-service = "0.3.0"
57udev = ">= 0.3, <0.5"
58url = "2.1"
59#valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
60walkdir = "2"
61xdg = "2.2"
62zstd = { version = "0.4", features = [ "bindgen" ] }
63nom = "5.1"
64crossbeam-channel = "0.4"
65
66[features]
67default = []
68#valgrind = ["valgrind_request"]