-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (33 loc) · 1018 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
[package]
name = "stamp-cli"
version = "0.1.4"
authors = ["Andrew Danger Lyon <andrew@killtheradio.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.70"
atty = "0.2"
chrono = { version = "0.4", features = ["clock", "serde"] }
clap = { version = "4.1.8", features = ["derive", "wrap_help"] }
dialoguer = "0.10.0"
indicatif = "0.15.0"
notify-rust = "4.8.0"
once_cell = "1.13"
prettytable-rs = "0.10.0"
regex = "1.6"
serde = "1.0"
serde_derive = "1.0"
sharks = "0.4"
stamp-aux = { path = "../aux" }
stamp-core = { path = "../core" }
stamp-net = { path = "../net" }
textwrap = { version = "0.13", features = ["terminal_size"] }
tokio = { version = "1.34", features = ["io-std", "rt"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
toml = "0.5"
url = "2.4"
[features]
yaml-export = ["stamp-core/yaml-export"]
[profile.release]
strip = "symbols"