-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 1.1 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
[package]
name = "agf"
version = "0.12.0"
edition = "2024"
# 1.88 = let-chains (edition 2024); also covers usize::is_multiple_of (1.87).
rust-version = "1.88"
description = "Find and resume local AI coding-agent sessions across Claude Code, Codex, Gemini, Cursor CLI, OpenCode, Kiro, pi, and Hermes"
license = "MIT"
repository = "https://github.com/subinium/agf"
keywords = ["tui", "cli", "agent", "session", "claude"]
categories = ["command-line-utilities"]
readme = "README.md"
[dependencies]
superlighttui = "0.20"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.40", features = ["bundled"] }
nucleo = "0.5"
clap = { version = "4", features = ["derive"] }
thiserror = "2"
anyhow = "1"
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
walkdir = "2"
rayon = "1"
unicode-width = "0.2"
toml = "1"
sha2 = "0.10"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
# No `panic = "abort"`: scanner::scan_all relies on unwinding to isolate a
# panicking scanner thread (join -> Err) so one malformed session file can't
# take down the whole listing.