-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 997 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
[package]
name = "grox-cli"
version = "0.1.1"
edition = "2024"
description = "Agentic coding with Grok"
license = "MIT"
repository = "https://github.com/dominicva/grox"
keywords = ["grok", "xai", "agent", "coding", "cli"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["docs/", "PLAN.md", "TODOS.md"]
[[bin]]
name = "grox"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["stream", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
colored = "3"
rustyline = "18"
eventsource-stream = "0.2"
futures = "0.3"
dotenvy = "0.15"
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
regex = "1"
uuid = { version = "1.23.0", features = ["v4"] }
chrono = { version = "0.4.44", features = ["serde"] }
syntect = { version = "5.3.0", features = ["default-themes", "default-syntaxes"] }
ignore = "0.4"
inquire = "0.7"
[dev-dependencies]
tempfile = "3"