-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
44 lines (38 loc) · 1 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 = "hok"
description = "Hok is a CLI implementation of Scoop in Rust"
repository = "https://github.com/chawyehsu/hok"
version = "0.1.0-beta.7"
authors = ["Chawye Hsu <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
readme = "README.md"
[workspace]
members = ["crates/libscoop", "crates/scoop_hash"]
[lib]
path = "src/lib.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["wrap_help", "cargo", "derive"] }
clap-verbosity-flag = { version = "3.0.1", features = ["tracing"], default-features = false }
clap_complete = "4.5.38"
crossterm = "0.28"
indicatif = "0.17.9"
regex = "1.5.3"
remove_dir_all = "0.7.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[dependencies.libscoop]
version = "0.1.0-beta.7"
features = ["rustcrypto-hash"]
path = "./crates/libscoop"
[profile.release]
debug = false
lto = "fat"
panic = "abort"
opt-level = 3
strip = "symbols"
codegen-units = 1
[profile.release-debug]
inherits = "release"
debug = true
strip = false