2025-04-24 17:14:47 -07:00
|
|
|
[package]
|
2025-09-15 12:22:29 -07:00
|
|
|
edition = "2024"
|
2025-04-24 17:14:47 -07:00
|
|
|
name = "codex-execpolicy"
|
2025-05-07 10:08:06 -07:00
|
|
|
version = { workspace = true }
|
2025-04-24 17:14:47 -07:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "codex-execpolicy"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "codex_execpolicy"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
2025-05-08 09:46:18 -07:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2025-04-24 17:14:47 -07:00
|
|
|
[dependencies]
|
2025-09-22 18:47:01 +02:00
|
|
|
allocative = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
|
derive_more = { workspace = true, features = ["display"] }
|
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
|
log = { workspace = true }
|
|
|
|
|
multimap = { workspace = true }
|
|
|
|
|
path-absolutize = { workspace = true }
|
|
|
|
|
regex-lite = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
serde_with = { workspace = true, features = ["macros"] }
|
|
|
|
|
starlark = { workspace = true }
|
2025-07-10 20:08:16 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-09-22 18:47:01 +02:00
|
|
|
tempfile = { workspace = true }
|