-
Notifications
You must be signed in to change notification settings - Fork 97
/
Cargo.toml
39 lines (36 loc) · 976 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
[package]
name = "tailspin"
version = "4.1.0"
edition = "2021"
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.70"
[[bin]]
path = "src/main.rs"
name = "tspin"
[lints.clippy]
missing-const-for-fn = "warn"
[dependencies]
async-trait = "0.1.83"
clap = { version = "4.5.23", features = ["derive"] }
clap_complete = "4.5.40"
ctrlc = "3.4.5"
inlet_manifold = { git = "https://github.com/bensadeh/manifold", branch = "main" }
linemux = "0.3.0"
miette = { version = "7.4.0", features = ["fancy"] }
nu-ansi-term = "0.50.1"
once_cell = "1.20.2"
owo-colors = "4.1.0"
rand = "0.8.5"
rayon = "1.10.0"
regex = "1.11.1"
serde = { version = "1.0.217", features = ["derive"] }
shellexpand = "3.1.0"
tempfile = "3.14.0"
terminal_size = "0.4.1"
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full"] }
toml = "0.8.19"