]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
pbs-client: add option to use the new RateLimiter
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "2.0.13"
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-config",
26 "pbs-datastore",
27 "pbs-fuse-loop",
28 "pbs-runtime",
29 "proxmox-rest-server",
30 "proxmox-rrd",
31 "proxmox-systemd",
32 "pbs-tape",
33 "pbs-tools",
34
35 "proxmox-backup-banner",
36 "proxmox-backup-client",
37 "proxmox-file-restore",
38 "proxmox-restore-daemon",
39 "pxar-bin",
40 ]
41
42 [lib]
43 name = "proxmox_backup"
44 path = "src/lib.rs"
45
46 [dependencies]
47 apt-pkg-native = "0.3.2"
48 base64 = "0.12"
49 bitflags = "1.2.1"
50 bytes = "1.0"
51 crc32fast = "1"
52 endian_trait = { version = "0.6", features = ["arrays"] }
53 env_logger = "0.7"
54 flate2 = "1.0"
55 anyhow = "1.0"
56 thiserror = "1.0"
57 futures = "0.3"
58 h2 = { version = "0.3", features = [ "stream" ] }
59 handlebars = "3.0"
60 hex = "0.4.3"
61 http = "0.2"
62 hyper = { version = "0.14", features = [ "full" ] }
63 lazy_static = "1.4"
64 libc = "0.2"
65 log = "0.4"
66 nix = "0.19.1"
67 num-traits = "0.2"
68 once_cell = "1.3.1"
69 openssl = "0.10"
70 pam = "0.7"
71 pam-sys = "0.5"
72 percent-encoding = "2.1"
73 regex = "1.2"
74 rustyline = "7"
75 serde = { version = "1.0", features = ["derive"] }
76 serde_json = "1.0"
77 siphasher = "0.3"
78 syslog = "4.0"
79 tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
80 tokio-openssl = "0.6.1"
81 tokio-stream = "0.1.0"
82 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
83 tower-service = "0.3.0"
84 udev = "0.4"
85 url = "2.1"
86 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
87 walkdir = "2"
88 webauthn-rs = "0.2.5"
89 xdg = "2.2"
90 nom = "5.1"
91 crossbeam-channel = "0.5"
92
93 # Used only by examples currently:
94 zstd = { version = "0.6", features = [ "bindgen" ] }
95
96 pathpatterns = "0.1.2"
97 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
98
99 proxmox = { version = "0.15.0", features = [ "sortable-macro" ] }
100 proxmox-http = { version = "0.5.2", features = [ "client", "http-helpers", "websocket" ] }
101 proxmox-io = "1"
102 proxmox-lang = "1"
103 proxmox-router = { version = "1.1", features = [ "cli" ] }
104 proxmox-schema = { version = "1", features = [ "api-macro" ] }
105 proxmox-section-config = "1"
106 proxmox-tfa = { version = "1", features = [ "u2f" ] }
107 proxmox-time = "1"
108 proxmox-uuid = "1"
109
110 proxmox-acme-rs = "0.3"
111 proxmox-apt = "0.8.0"
112 proxmox-openid = "0.8.1"
113
114 pbs-api-types = { path = "pbs-api-types" }
115 pbs-buildcfg = { path = "pbs-buildcfg" }
116 pbs-client = { path = "pbs-client" }
117 pbs-config = { path = "pbs-config" }
118 pbs-datastore = { path = "pbs-datastore" }
119 pbs-runtime = { path = "pbs-runtime" }
120 proxmox-rest-server = { path = "proxmox-rest-server" }
121 proxmox-rrd = { path = "proxmox-rrd" }
122 proxmox-systemd = { path = "proxmox-systemd" }
123 pbs-tools = { path = "pbs-tools" }
124 pbs-tape = { path = "pbs-tape" }
125
126 # Local path overrides
127 # NOTE: You must run `cargo update` after changing this for it to take effect!
128 [patch.crates-io]
129 #proxmox = { path = "../proxmox/proxmox" }
130 #proxmox-http = { path = "../proxmox/proxmox-http" }
131 #pxar = { path = "../pxar" }
132
133 [features]
134 default = []
135 #valgrind = ["valgrind_request"]