]> git.proxmox.com Git - proxmox-backup.git/blob - Cargo.toml
cargo: update proxmox to 0.12.1
[proxmox-backup.git] / Cargo.toml
1 [package]
2 name = "proxmox-backup"
3 version = "2.0.5"
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-fuse-loop",
27 "pbs-runtime",
28 "pbs-systemd",
29 "pbs-tools",
30
31 "proxmox-backup-banner",
32 "pxar-bin",
33 ]
34
35 [lib]
36 name = "proxmox_backup"
37 path = "src/lib.rs"
38
39 [dependencies]
40 apt-pkg-native = "0.3.2"
41 base64 = "0.12"
42 bitflags = "1.2.1"
43 bytes = "1.0"
44 crc32fast = "1"
45 endian_trait = { version = "0.6", features = ["arrays"] }
46 env_logger = "0.7"
47 flate2 = "1.0"
48 anyhow = "1.0"
49 thiserror = "1.0"
50 futures = "0.3"
51 h2 = { version = "0.3", features = [ "stream" ] }
52 handlebars = "3.0"
53 http = "0.2"
54 hyper = { version = "0.14", features = [ "full" ] }
55 lazy_static = "1.4"
56 libc = "0.2"
57 log = "0.4"
58 nix = "0.19.1"
59 num-traits = "0.2"
60 once_cell = "1.3.1"
61 openssl = "0.10"
62 pam = "0.7"
63 pam-sys = "0.5"
64 percent-encoding = "2.1"
65 pin-utils = "0.1.0"
66 pin-project = "1.0"
67 regex = "1.2"
68 rustyline = "7"
69 serde = { version = "1.0", features = ["derive"] }
70 serde_json = "1.0"
71 siphasher = "0.3"
72 syslog = "4.0"
73 tokio = { version = "1.6", features = [ "fs", "io-util", "io-std", "macros", "net", "parking_lot", "process", "rt", "rt-multi-thread", "signal", "time" ] }
74 tokio-openssl = "0.6.1"
75 tokio-stream = "0.1.0"
76 tokio-util = { version = "0.6", features = [ "codec", "io" ] }
77 tower-service = "0.3.0"
78 udev = ">= 0.3, <0.5"
79 url = "2.1"
80 #valgrind_request = { git = "https://github.com/edef1c/libvalgrind_request", version = "1.1.0", optional = true }
81 walkdir = "2"
82 webauthn-rs = "0.2.5"
83 xdg = "2.2"
84 zstd = { version = "0.6", features = [ "bindgen" ] }
85 nom = "5.1"
86 crossbeam-channel = "0.5"
87
88 pathpatterns = "0.1.2"
89 pxar = { version = "0.10.1", features = [ "tokio-io" ] }
90
91 proxmox = { version = "0.12.1", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
92 proxmox-acme-rs = "0.2.1"
93 proxmox-apt = "0.5.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-fuse-loop = { path = "pbs-fuse-loop" }
102 pbs-runtime = { path = "pbs-runtime" }
103 pbs-systemd = { path = "pbs-systemd" }
104 pbs-tools = { path = "pbs-tools" }
105
106 # Local path overrides
107 # NOTE: You must run `cargo update` after changing this for it to take effect!
108 [patch.crates-io]
109 #proxmox = { path = "../proxmox/proxmox", features = [ "sortable-macro", "api-macro", "cli", "router", "tfa" ] }
110 #proxmox-http = { path = "../proxmox/proxmox-http", features = [ "client", "http-helpers", "websocket" ] }
111 #pxar = { path = "../pxar", features = [ "tokio-io" ] }
112
113 [features]
114 default = []
115 #valgrind = ["valgrind_request"]