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