-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (51 loc) · 1.5 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (51 loc) · 1.5 KB
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
51
52
53
54
55
56
[package]
name = "batty-cat"
version = "0.14.0"
edition = "2021"
rust-version = "1.86"
authors = ["Thomas Björk <codedv8@gmail.com>"]
description = "A cat clone with syntax highlighting, git integration, and Rhai support"
license = "MIT"
readme = "README.md"
repository = "https://github.com/codedeviate/batty"
homepage = "https://github.com/codedeviate/batty"
documentation = "https://docs.rs/batty-cat"
keywords = ["cat", "bat", "syntax-highlighting", "cli", "terminal"]
categories = ["command-line-utilities"]
exclude = [
".claude/",
".github/",
".gitignore",
".git/",
".idea/",
"CLAUDE.md",
"OUT-OF-SCOPE.md",
]
[[bin]]
name = "batty"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
syntect = { version = "5", default-features = false, features = ["parsing", "regex-onig", "yaml-load"] }
two-face = "0.4"
git2 = { version = "0.19", default-features = false }
pager = "0.16"
anstyle = "1"
anstyle-query = "1"
dirs = "5"
anyhow = "1"
crossterm = "0.28"
toml = { version = "0.8", default-features = false, features = ["parse"] }
termimad = "0.34"
unicode-width = "0.1"
pulldown-cmark = { version = "0.13", default-features = false }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"