-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (63 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
80 lines (63 loc) · 1.33 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
68
69
70
71
72
73
74
75
76
77
78
79
80
[workspace]
resolver = "2"
members = [
"crates/grove-lib",
"crates/grove-daemon",
"crates/grove-cli",
"crates/grove",
"crates/grove-tui",
]
[workspace.package]
version = "0.4.1"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/NathanDrake2406/grove"
[workspace.dependencies]
# Analysis
gix = "0.76"
tree-sitter = "0.26"
tree-sitter-typescript = "0.23"
tree-sitter-rust = "0.24"
tree-sitter-go = "0.25"
tree-sitter-c-sharp = "0.23"
tree-sitter-java = "0.23"
tree-sitter-python = "0.25"
oxc_resolver = "11"
similar = "2"
petgraph = "0.8"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
thiserror = "2"
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
# Filesystem
notify = "8"
ignore = "0.4"
# Database
rusqlite = { version = "0.38", features = ["bundled"] }
# CLI
clap = { version = "4", features = ["derive"] }
colored = "3"
# Daemon
daemonize = "0.5"
# Observability
tracing = "0.1"
tracing-subscriber = "0.3"
# Time
chrono = { version = "0.4", features = ["serde"] }
# IDs
uuid = { version = "1", features = ["v4", "v5", "serde"] }
# Bytes
bytes = "1"
# System
libc = "0.2"
# Testing
tempfile = "3"
# Streams
futures = "0.3"
# TUI
ratatui = "0.29"
crossterm = "0.28"