-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 877 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (34 loc) · 877 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
38
39
40
[package]
name = "anam"
version = "0.2.0"
edition = "2021"
description = "Search AI coding chat history from Claude Code, Codex, and OpenCode"
authors = ["Terry Li"]
license = "MIT"
repository = "https://github.com/terry-li-hm/anam"
[[bin]]
name = "anam"
path = "src/main.rs"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rayon = "1"
dirs = "6"
[workspace]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dev-dependencies]
assert_cmd = "2.1.2"
predicates = "3.1.4"
[lints.clippy]
# Pre-existing issues in src/main.rs — suppressed at project level rather than
# modifying source files (test-only change policy).
redundant_closure = "allow"
unnecessary_lazy_evaluations = "allow"