-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 809 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 809 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
[package]
name = "codex-threads"
version = "0.1.1"
edition = "2024"
license = "MIT"
description = "Query, search, resolve, and read local Codex session archives with deterministic JSON, predictable errors, and agent-friendly subcommands."
repository = "https://github.com/0xmrwn/codex-threads"
readme = "README.md"
[dependencies]
camino = { version = "1.1.9", features = ["serde1"] }
clap = { version = "4.5.39", features = ["derive", "wrap_help"] }
directories = "6.0.0"
rusqlite = { version = "0.37.0", features = ["bundled"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
thiserror = "2.0.17"
time = { version = "0.3.44", features = ["formatting", "macros", "parsing"] }
walkdir = "2.5.0"
[dev-dependencies]
assert_cmd = "2.0.17"
predicates = "3.1.3"
tempfile = "3.23.0"