-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (39 loc) · 890 Bytes
/
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
[package]
name = "hok"
description = "Hok is a CLI implementation of Scoop in Rust"
homepage = "https://github.com/chawyehsu/hok"
version = "0.1.0-beta.6"
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"
[[bin]]
name = "hok"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.3", features = ["wrap_help", "cargo"] }
crossterm = "0.28"
env_logger = "0.8.3"
indicatif = "0.17.5"
regex = "1.5.3"
remove_dir_all = "0.7.0"
[dependencies.libscoop]
version = "0.1.0-beta.6"
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