-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.7 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "restic-dl"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5.3"
askama = { version = "0.12.1", default-features = false, features = ["with-axum"] }
askama_axum = "0.4.0"
axum = { version = "0.7.5", features = ["http2", "macros"] }
axum-embed = "0.1.0"
axum-extra = { version = "0.9.3", features = ["cookie"] }
blake3 = { version = "1.5.1", features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["std", "now", "serde"] }
clap = { version = "4.5.6", features = ["env", "derive"] }
fast_qr = { version = "0.12.5", features = ["svg"] }
form_urlencoded = "1.2.1"
futures = { version = "0.3.30", default-features = false, features = ["std"] }
futures-time = "3.0.0"
hex = "0.4.3"
listenfd = "1.0.1"
rand = "0.8.5"
rust-embed = "8.4.0"
rustic_backend = { git = "https://github.com/TilBlechschmidt/rustic_core", version = "0.1.1", branch = "public-repo-type", default-features = false }
rustic_core = { git = "https://github.com/TilBlechschmidt/rustic_core", version = "0.2.0", branch = "public-repo-type" }
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
syntect = { version = "5.2.0", default-features = false, features = ["html", "parsing"] }
syntect-assets = "0.23.6"
tempfile = "3.10.1"
thiserror = "1.0.61"
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["io"] }
tower-http = { version = "0.5.2", features = ["fs", "compression-br", "compression-gzip", "normalize-path"] }
zip = { version = "2.0.0", default-features = false, features = ["zstd", "deflate-flate2", "deflate"] }
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
opt-level = "s"
strip = true
lto = true