-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (62 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "hbackup"
version = "0.5.6"
edition = "2024"
authors = ["asthetik"]
homepage = "https://github.com/asthetik/hbackup"
repository = "https://github.com/asthetik/hbackup"
description = """
hbackup is a sample, high-performance, cross-platform backup tool written
in Rust. It is designed to be fast, efficient, and easy to use,
with a focus on performance and reliability.
"""
license = "MIT"
keywords = ["hbackup", "bk", "backup", "cli"]
categories = ["command-line-utilities"]
exclude = [
".github/*",
"scripts/*",
"deny.toml",
]
rust-version = "1.88.0"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
anyhow = "1.0.102"
dirs = "6.0.0"
toml = "1.1.2"
flate2 = "1.1.9"
tar = "0.4.46"
walkdir = "2.5.0"
zip = { version = "8.6.0", default-features = false, features = ["deflate"] }
sevenz-rust2 = { version = "0.20.2", features = ["compress"] }
zstd = "0.13.3"
bzip2 = "0.6.1"
xz2 = { version = "0.1.7", features = ["static"] }
lz4 = "1.28.1"
tokio = { version = "1.52.3", features = ["rt-multi-thread", "fs", "macros"] }
futures = "0.3.32"
thiserror = "2.0.18"
[dev-dependencies]
tempfile = "3.27.0"
criterion = { version = "0.8.2", features = ["html_reports"] }
rand = "0.10.1"
assert_fs = "1.1.4"
predicates = "3.1.4"
tokio = { version = "1.52.3", features = ["rt", "macros", "test-util"] }
assert_cmd = "2.2.2"
[[bin]]
name = "bk"
path = "src/main.rs"
[profile.release]
debug = 1
panic = "abort"
[profile.release-lto]
inherits = "release"
opt-level = 3
strip = "symbols"
lto = "fat"
panic = "abort"
debug-assertions = false
incremental = false
codegen-units = 1