-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathCargo.toml
37 lines (34 loc) · 932 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
[package]
name = "tailspin"
version = "4.1.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.86"
clap = { version = "4.5.31", features = ["derive"] }
clap_complete = "4.5.46"
ctrlc = "3.4.5"
inlet_manifold = { git = "https://github.com/bensadeh/manifold", branch = "main" }
linemux = "0.3.0"
miette = { version = "7.5.0", features = ["fancy"] }
owo-colors = "4.2.0"
rand = "0.9.0"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.218", features = ["derive"] }
shellexpand = "3.1.0"
tempfile = "3.17.1"
terminal_size = "0.4.1"
thiserror = "2.0.12"
tokio = { version = "1.43.0", features = ["full"] }
toml = "0.8.20"