forked from subinium/agf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 832 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 832 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
[package]
name = "agf"
version = "0.5.3"
edition = "2021"
description = "AI Agent Session Finder TUI — unified launcher for Claude Code, Codex, and OpenCode sessions"
license = "MIT"
repository = "https://github.com/subinium/agf"
keywords = ["tui", "cli", "ai", "agent", "claude"]
categories = ["command-line-utilities"]
readme = "README.md"
[dependencies]
ratatui = { version = "0.29", features = ["crossterm"] }
crossterm = "0.28"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
nucleo = "0.5"
clap = { version = "4", features = ["derive"] }
thiserror = "2"
anyhow = "1"
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
walkdir = "2"
unicode-width = "0.2"
toml = "0.8"
sha2 = "0.10"
[profile.release]
opt-level = 3
lto = true
strip = true