-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
50 lines (42 loc) · 904 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
42
43
44
45
46
47
48
49
50
[package]
name = "zjstatus"
version = "0.20.0"
authors = ["Daniel Jankowski"]
edition = "2018"
[[bin]]
name = "zjstatus"
bench = false
[[bin]]
name = "zjframes"
bench = false
[lib]
bench = false
[features]
bench = []
tracing = []
[dependencies]
zellij-tile = "0.41.2"
chrono = { version = "0.4.39", default-features = false }
regex = "1.11.1"
chrono-tz = "0.10.1"
anyhow = "1.0.95"
anstyle = "1.0.10"
uuid = { version = "1.12.0", features = ["v4"] }
lazy_static = "1.5.0"
cached = { version = "0.54.0", features = ["wasm"] }
console = "0.15.10"
tracing-subscriber = "0.3.19"
tracing = "0.1.41"
kdl = { version = "6.3.2", features = ["v1", "v1-fallback"] }
rstest = "0.24.0"
itertools = "0.14.0"
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false, features = [
"html_reports",
] }
[[bench]]
name = "benches"
harness = false
[[bench]]
name = "widgets"
harness = false