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