-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.25 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
46
47
48
49
50
[package]
name = "bobr"
version = "0.0.0"
authors = ["Alexander Weber (cchexcode) <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A simple command multiplexer."
homepage = "https://github.com/cchexcode/bobr"
repository = "https://github.com/cchexcode/bobr"
keywords = ["bobr", "cli"]
categories = ["command-line-utilities"]
readme = "docs/README.md"
[features]
default = ["format+json"]
"format+json" = ["serde_json"]
"format+yaml" = ["serde_yml"]
[dependencies]
async-trait = "0.1.83"
tokio = { version = "1.42.0", features = [
"rt",
"rt-multi-thread",
"macros",
"process",
"io-util",
"time",
"sync",
] }
clap = "4.5.23"
clap_complete = "4.5.38"
clap_mangen = "0.2.24"
clap-markdown = "0.1.4"
bytes = "1.9.0"
crossterm = "0.28.1"
itertools = "0.13.0"
anyhow = "1.0.94"
signal-hook = "0.3.17"
flume = "0.11.1"
thiserror = "2.0.4"
parking_lot = "0.12.3"
serde = { version = "1.0.215", features = ["derive"] }
chrono = { version = "0.4.38", features = ["serde"] }
serde_json = { version = "1.0.133", optional = true }
serde_yml = { version = "0.0.12", optional = true }
[dev-dependencies]
hoox = "0.3.0"
clitest = { git = "https://github.com/cchexcode/clitest_rs", rev = "b540083fec4033abb4a25f422fa010b8c17dbaa2" }