forked from ai-ptd-dev/ptd-ruby-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 741 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
[package]
name = "basiccli"
version = "1.0.0"
edition = "2021"
authors = ["BasicCli Contributors"]
description = "BasicCli - High Performance CLI Framework"
repository = "https://github.com/ai-ptd-dev/basiccli"
[[bin]]
name = "basiccli-rust"
path = "src/cli.rs"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
csv = "1.3"
chrono = "0.4"
colored = "3.0"
tempfile = "3.8"
sha2 = "0.10"
md5 = "0.8"
sha1 = "0.10"
indicatif = "0.18"
atty = "0.2"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
pretty_assertions = "1.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true