-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (39 loc) · 915 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
[package]
name = "braise"
version = "0.1.11"
edition = "2021"
license-file = "LICENSE"
description = "Run your tasks like a chef !"
homepage = "https://github.com/cestef/braise"
repository = "https://github.com/cestef/braise"
readme = "README.md"
authors = ["cstef <root@cstef.dev>"]
[dependencies]
better-panic = "0.3.0"
cargo_toml = "0.21"
clap = { version = "4.5", features = [
"derive",
"cargo",
"wrap_help",
"string",
] }
color-eyre = "0.6.3"
const_format = "0.2.34"
dashmap = "6.1.0"
dirs = "6.0.0"
dotenvy = "0.15.7"
either = { version = "1.13.0", features = ["serde"] }
human-panic = "2"
lazy_static = "1.5"
log = "0.4"
pretty_env_logger = "0.5.0"
regex = "1.11.1"
serde = { version = "1", features = ["derive"] }
strip-ansi-escapes = "0.2"
terminal_size = "0.4"
thiserror = "2"
toml = "0.8"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"