-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
38 lines (33 loc) · 927 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
[package]
name = "spacer"
version = "0.3.0"
edition = "2021"
license = "MIT"
authors = ["Sam Rose <[email protected]>"]
keywords = ["cli"]
categories = ["command-line-utilities"]
repository = "https://github.com/samwho/spacer"
description = "A CLI utility for adding spacers when command output stops"
include = ["Cargo.toml", "LICENSE", "README.md", "**/*.rs"]
[badges]
maintenance = { status = "passively-maintained" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3", features = ["derive"] }
anyhow = "1.0"
terminal_size = "0.3"
time = { version = "0.3" }
lazy_static = "1.4"
owo-colors = { version = "3", features = ["supports-colors"] }
log = "0.4"
env_logger = "0.10"
human-panic = "1.0"
chrono = "0.4"
chrono-tz = "0.8"
[dev-dependencies]
regex = "1"
test-case = "3"