-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 942 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 942 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
[package]
name = "gold-band"
version = "0.4.0"
edition = "2024"
license = "AGPL-3.0-only"
[workspace]
members = ["src-tauri"]
resolver = "3"
[dependencies]
agent-client-protocol = "0.11.1"
anyhow = "1"
camino = { version = "1", features = ["serde1"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
dirs = "6"
clap = { version = "4", features = ["derive"] }
indexmap = { version = "2", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
minijinja = "2"
thiserror = "2"
tokio = { version = "1", features = ["macros", "process", "rt-multi-thread", "fs", "io-util"] }
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
ratatui = "0.29"
crossterm = "0.28"
figlet-rs = "1.0.0"
rusqlite = { version = "0.34", features = ["bundled"] }
[dev-dependencies]
tempfile = "3"