-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
74 lines (69 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "caligula"
description = "A lightweight, user-friendly disk imaging tool"
homepage = "https://github.com/ifd3f/caligula"
repository = "https://github.com/ifd3f/caligula.git"
authors = ["Astrid Yu <[email protected]>"]
version = "0.4.8"
edition = "2021"
license = "GPL-3.0"
[dependencies]
aligned-vec = "0.5.0"
anyhow = "1.0.82"
base16 = "0.2.1"
base64 = "0.22.1"
bincode = "1.3.3"
byteorder = "1.5.0"
bytesize = "1.3.0"
bzip2 = { version = "0.4.4", features = ["static"] }
clap = { version = "4.5.4", features = ["derive", "cargo", "wrap_help"] }
crossterm = { version = "0.27.0", features = ["event-stream"] }
derive_more = "0.99.17"
digest = "0.10.6"
flate2 = "1.0.25"
format-bytes = "0.3.0"
futures = "0.3.30"
futures-io = "0.3.26"
indicatif = "0.17.8"
inquire = "0.7.5"
interprocess = { version = "2.0.0", features = ["tokio"] }
is-terminal = "0.4.12"
itertools = "0.12.1"
libc = "0.2.154"
lz4_flex = "0.11.3"
md-5 = "0.10.5"
process_path = "0.1.4"
ratatui = "0.26.0"
ruzstd = "0.6.0"
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
sha1 = "0.10.5"
sha2 = "0.10.6"
shell-words = "1.1.0"
thiserror = "1.0.59"
tokio = { version = "1.37.0", features = ["full"] }
tracing = { version = "0.1.40", features = [
"async-await",
"log",
"release_max_level_debug",
] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "fmt"] }
tracing-unwrap = "1.0.1"
which = "6.0.1"
xz2 = { version = "0.1.7", features = ["static"] }
[dev-dependencies]
approx = "0.5.1"
assert_matches = "1.5.0"
pretty_assertions = "1.4.0"
rand = { version = "0.8.5", features = ["small_rng"] }
rstest = "0.19.0"
test-case = "3.0.0"
[profile.release]
opt-level = 2
lto = true
codegen-units = 1
[target.aarch64-apple-darwin.dependencies]
libc = "0.2.139"
[build-dependencies]
bindgen = "0.64.0"
cc = "1.0.79"