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