-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
67 lines (60 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "batless"
version = "0.6.0"
edition = "2021"
rust-version = "1.85.0"
authors = ["Thomas <thomas@docdyhr.com>"]
description = "A non-blocking, LLM-friendly code viewer inspired by bat"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/docdyhr/batless"
repository = "https://github.com/docdyhr/batless"
documentation = "https://docs.rs/batless"
keywords = ["cli", "syntax-highlighting", "code-viewer", "ai", "automation"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
exclude = [
"target/",
"*.tmp",
"test_file*.txt",
"demo_output.txt",
".github/",
"demo.sh",
"fuzz/",
]
build = "build.rs"
[lib]
name = "batless"
path = "src/lib.rs"
[[bin]]
name = "batless"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4.6"
is-terminal = "0.4"
termcolor = "1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
encoding_rs = "0.8"
toml = "1.1"
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
# Tree-sitter for AST parsing
tree-sitter = "0.26"
tree-sitter-rust = "0.24"
tree-sitter-python = "0.25"
tree-sitter-javascript = "0.25"
tree-sitter-typescript = "0.23"
sha2 = "0.11"
[dev-dependencies]
tempfile = "3.27"
serde_json = "1.0"
# Enhanced testing dependencies
proptest = { version = "1.11", default-features = false, features = ["std"] }
criterion = { version = "0.8", features = ["html_reports"] }
[[bench]]
name = "performance"
harness = false
# Resolve duplicate dependencies by forcing newer compatible versions
[workspace]
resolver = "2"