-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathCargo.toml
38 lines (35 loc) · 988 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 = "tailspin"
version = "5.5.0"
edition = "2024"
authors = ["Ben Sadeh"]
description = "A log file highlighter"
repository = "https://github.com/bensadeh/tailspin"
keywords = ["log", "syntax-highlighting", "tail", "less"]
license = "MIT"
rust-version = "1.85"
[[bin]]
path = "src/main.rs"
name = "tspin"
[lints.clippy]
missing-const-for-fn = "warn"
[dependencies]
async-trait = "0.1.88"
clap = { version = "4.5.37", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.5.47"
ctrlc = "3.4.6"
linemux = "0.3.0"
memchr = "2.7.4"
miette = { version = "7.5.0", features = ["fancy"] }
nu-ansi-term = "0.50.1"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140", features = ["preserve_order"] }
shell-words = "1.1.0"
shellexpand = "3.1.1"
tempfile = "3.19.1"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["full"] }
toml = "0.8.20"
uuid = { version = "1.16.0", features = ["v4"] }