2026-02-10 13:42:17 +00:00
|
|
|
[package]
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
name = "codex-hooks"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
doctest = false
|
|
|
|
|
name = "codex_hooks"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-03-09 21:11:31 -07:00
|
|
|
anyhow = { workspace = true }
|
2026-02-10 13:42:17 +00:00
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
2026-03-09 21:11:31 -07:00
|
|
|
codex-config = { workspace = true }
|
2026-02-10 13:42:17 +00:00
|
|
|
codex-protocol = { workspace = true }
|
|
|
|
|
futures = { workspace = true, features = ["alloc"] }
|
2026-03-09 21:11:31 -07:00
|
|
|
regex = { workspace = true }
|
|
|
|
|
schemars = { workspace = true }
|
2026-02-10 13:42:17 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
2026-03-09 21:11:31 -07:00
|
|
|
tokio = { workspace = true, features = ["io-util", "process", "time"] }
|
2026-02-10 13:42:17 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = { workspace = true }
|
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
|