-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1021 Bytes
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
[package]
name = "dirpack"
version = "0.3.3"
edition = "2021"
description = "Budgeted directory indexes for AI coding agents with tree-sitter signatures"
license = "MIT"
repository = "https://github.com/rawwerks/dirpack"
readme = "README.md"
keywords = ["cli", "ai", "context", "tree-sitter", "llm"]
categories = ["command-line-utilities", "development-tools"]
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
"CHANGELOG.md",
"default_config.toml",
]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
ignore = "0.4"
walkdir = "2"
tree-sitter = "0.24"
tree-sitter-rust = "0.23"
tree-sitter-go = "0.23"
tree-sitter-python = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-c = "0.23"
tree-sitter-cpp = "0.23"
streaming-iterator = "0.1"
thiserror = "2"
anyhow = "1"
dirs = "5"
serde_json = "1"
sha2 = "0.10"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"