-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 1.19 KB
/
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
[package]
name = "stdecor"
description = "Run a command with a decorated stdout/stderr"
version = "0.1.13"
authors = ["Leandro Lisboa Penz <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lpenz/stdecor"
repository = "https://github.com/lpenz/stdecor"
build = "build.rs"
categories = ["command-line-utilities"]
keywords = ["command-line"]
[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
color-eyre = "0.6.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log"] }
terminal_size = "0.4.0"
polling = "3.7.3"
memchr = "2.7.4"
lineriver = "0.7.1"
[dependencies.chrono]
version = "0.4.38"
default-features = false
features = ["clock"]
[build-dependencies]
color-eyre = "0.6.3"
man = "0.3.0"
[package.metadata.deb]
section = "utils"
extended-description = """\
stdecor runs a command with a decorated stdout/stderr
"""
assets = [
["target/release/stdecor.1", "usr/share/man/man1/", "644"],
["target/release/stdecor", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/stdecor/", "644"],
["AUTHORS", "usr/share/doc/stdecor/", "644"],
["README.md", "usr/share/doc/stdecor/", "644"],
]