-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (40 loc) · 1.29 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
[workspace]
members = [
"crates/clawedcode-api",
"crates/clawedcode-cli",
"crates/clawedcode-core",
"crates/clawedcode-mcp",
"crates/clawedcode-tui",
"crates/clawedcode-tools",
]
default-members = ["crates/clawedcode-cli"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.94"
license = "MIT"
repository = "https://github.com/suryavirkapur/clawedcode"
readme = "README.md"
[workspace.dependencies]
anyhow = "1.0.100"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.48", features = ["derive", "env"] }
crossterm = "0.29.0"
directories = "6.0.0"
once_cell = "1.21.3"
ratatui = "0.29.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_yaml = "0.9.34"
tempfile = "3"
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread", "sync", "time"] }
toml = "0.9.7"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt"] }
uuid = { version = "1.18.1", features = ["serde", "v4"] }
futures-core = "0.3"
futures-util = "0.3"
pin-project-lite = "0.2"
# Use Rustls TLS so release builds for musl targets do not depend on system OpenSSL.
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls-webpki-roots"] }