]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
cargo: bump proxmox-http to 0.3.0
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "2.0.4"
4 authors = [
5 "Dietmar Maurer <dietmar@proxmox.com>",
6 "Dominik Csapak <d.csapak@proxmox.com>",
7 "Christian Ebner <c.ebner@proxmox.com>",
8 "Fabian Grünbichler <f.gruenbichler@proxmox.com>",
9 "Stefan Reiter <s.reiter@proxmox.com>",
10 "Thomas Lamprecht <t.lamprecht@proxmox.com>",
11 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
12 "Proxmox Support Team <support@proxmox.com>",
13 ]
14 edition = "2018"
15 license = "AGPL-3"
16 description = "Proxmox Backup"
17 homepage = "https://www.proxmox.com"
18
19 exclude = [ "build", "debian", "tests/catar_data/test_symlink/symlink1"]
20
21 [workspace]
22 members = [
23 "pbs-buildcfg",
24 "pbs-client",
25 "pbs-datastore",
26 "pbs-runtime",
27 "pbs-systemd",
28 "pbs-tools",
29
30 "proxmox-backup-banner",
31 "pxar-bin",
32 ]
33
34 [lib]
35 name = "proxmox_backup"
36 path = "src/lib.rs"
37
38 [dependencies]
39 apt-pkg-native = "0.3.2"
40 base64 = "0.12"
41 bitflags = "1.2.1"
42 bytes = "1.0"
43 crc32fast = "1"
44 endian_trait = { version = "0.6", features = ["arrays"] }
45 env_logger = "0.7"
46 flate2 = "1.0"
47 anyhow = "1.0"
48 thiserror = "1.0"
49 futures = "0.3"
50 h2 = { version = "0.3", features = [ "stream" ] }
51 handlebars = "3.0"
52 http = "0.2"
53 hyper = { version = "0.14", features = [ "full" ] }
54 lazy_static = "1.4"
55 libc = "0.2"
56 log = "0.4"
57 nix = "0.19.1"
58 num-traits = "0.2"
59 once_cell = "1.3.1"
60 openssl = "0.10"
61 pam = "0.7"
62 pam-sys = "0.5"
63 percent-encoding = "2.1"
64 pin-utils = "0.1.0"
65 pin-project = "1.0"
66 regex = "1.2"
67 rustyline = "7"
68 serde = { version = "1.0", features = ["derive"] }
69 serde_json = "1.0"
70 siphasher = "0.3"
71 syslog = "4.0"
72 tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
73 tokio-openssl = "0.6.1"
74 tokio-stream = "0.1.0"
75 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
76 tower-service = "0.3.0"
77 udev = ">= 0.3, <0.5"
78 url = "2.1"
79 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
80 walkdir = "2"
81 webauthn-rs = "0.2.5"
82 xdg = "2.2"
83 zstd = { version = "0.6", features = [ "bindgen" ] }
84 nom = "5.1"
85 crossbeam-channel = "0.5"
86
87 pathpatterns = "0.1.2"
88 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
89
90 proxmox = { version = "0.12.0", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
91 proxmox-acme-rs = "0.2.1"
92 proxmox-apt = "0.5.1"
93 proxmox-fuse = "0.1.1"
94 proxmox-http = { version = "0.3.0", features = [ "client", "http-helpers", "websocket" ] }
95 proxmox-openid = "0.6.1"
96
97 pbs-api-types = { path = "pbs-api-types" }
98 pbs-buildcfg = { path = "pbs-buildcfg" }
99 pbs-client = { path = "pbs-client" }
100 pbs-datastore = { path = "pbs-datastore" }
101 pbs-runtime = { path = "pbs-runtime" }
102 pbs-systemd = { path = "pbs-systemd" }
103 pbs-tools = { path = "pbs-tools" }
104
105 # Local path overrides
106 # NOTE: You must run `cargo update` after changing this for it to take effect!
107 [patch.crates-io]
108 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
109 #proxmox-http = { path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
110 #pxar = { path = "../pxar", features = [ "tokio-io" ] }
111
112 [features]
113 default = []
114 #valgrind = ["valgrind_request"]