-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (53 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
66 lines (53 loc) · 1.45 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
[package]
name = "grit"
version = "0.3.0"
edition = "2021"
description = "Coordination layer for parallel AI agents on top of git"
keywords = ["git", "ai-agents", "experimental", "ast", "coordination"]
categories = ["development-tools", "command-line-utilities"]
license = "Apache-2.0"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
# SQLite
rusqlite = { version = "0.31", features = ["bundled"] }
# AST parsing
tree-sitter = "0.25"
tree-sitter-typescript = "0.23"
tree-sitter-rust = "0.24"
tree-sitter-python = "0.25"
tree-sitter-javascript = "0.25"
tree-sitter-c-sharp = "0.23"
tree-sitter-go = "0.25"
tree-sitter-java = "0.23"
tree-sitter-c = "0.24"
tree-sitter-cpp = "0.23"
tree-sitter-ruby = "0.23"
tree-sitter-php = "0.24"
tree-sitter-swift = "0.7"
tree-sitter-kotlin-ng = "1.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Errors
anyhow = "1"
# Time
chrono = "0.4"
# Async (for S3 runtime)
tokio = { version = "1", features = ["rt-multi-thread"] }
# Glob for file discovery
glob = "0.3"
# Colors in terminal
colored = "2"
# Cloud storage (S3/R2/GCS/Azure)
aws-config = { version = "1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1"
urlencoding = "2"
# Azure Blob Storage (native API with conditional writes + Event Grid)
azure_core = "0.21"
azure_storage = "0.21"
azure_storage_blobs = "0.21"
# Stream/async utilities (for Azure blob list)
futures = "0.3"
[dev-dependencies]
tempfile = "3"