-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 982 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (37 loc) · 982 Bytes
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
[package]
name = "box-cli"
description = "Box open standard archiver binary."
version = "0.4.0"
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
edition = "2024"
license = "EUPL-1.2"
repository = "https://github.com/bbqsrc/box"
[[bin]]
name = "box"
path = "src/main.rs"
[dependencies]
mimalloc.workspace = true
box-format.workspace = true
fastvint.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "fs"] }
async-walkdir.workspace = true
futures.workspace = true
clap.workspace = true
indicatif.workspace = true
glob.workspace = true
humansize.workspace = true
byteorder.workspace = true
chrono.workspace = true
blake3 = { workspace = true, features = ["digest"] }
thiserror.workspace = true
miette.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
wild.workspace = true
serde.workspace = true
serde_json.workspace = true
textwrap.workspace = true
num_cpus.workspace = true
[features]
default = []
selfextract = []