2025-04-24 17:14:47 -07:00
|
|
|
[package]
|
|
|
|
|
name = "codex-execpolicy"
|
2025-05-07 10:08:06 -07:00
|
|
|
version = { workspace = true }
|
2025-05-07 08:37:48 -07:00
|
|
|
edition = "2024"
|
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]
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
starlark = "0.13.0"
|
|
|
|
|
allocative = "0.3.3"
|
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
2025-07-10 20:08:16 +02:00
|
|
|
derive_more = { version = "2", features = ["display"] }
|
2025-04-24 17:14:47 -07:00
|
|
|
env_logger = "0.11.5"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
multimap = "0.10.0"
|
|
|
|
|
path-absolutize = "3.1.1"
|
2025-06-02 17:11:45 -07:00
|
|
|
regex-lite = "0.1"
|
2025-04-24 17:14:47 -07:00
|
|
|
serde = { version = "1.0.194", features = ["derive"] }
|
2025-08-04 14:26:14 -07:00
|
|
|
serde_json = "1.0.142"
|
2025-04-24 17:14:47 -07:00
|
|
|
serde_with = { version = "3", features = ["macros"] }
|
2025-07-10 20:08:16 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-04-24 17:14:47 -07:00
|
|
|
tempfile = "3.13.0"
|