Files
llmx/codex-rs/execpolicy/Cargo.toml
jcoens-openai 8a89d3aeda Update cargo to 2024 edition (#842)
Some effects of this change:
- New formatting changes across many files. No functionality changes
should occur from that.
- Calls to `set_env` are considered unsafe, since this only happens in
tests we wrap them in `unsafe` blocks
2025-05-07 08:37:48 -07:00

29 lines
603 B
TOML

[package]
name = "codex-execpolicy"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "codex-execpolicy"
path = "src/main.rs"
[lib]
name = "codex_execpolicy"
path = "src/lib.rs"
[dependencies]
anyhow = "1"
starlark = "0.13.0"
allocative = "0.3.3"
clap = { version = "4", features = ["derive"] }
derive_more = { version = "1", features = ["display"] }
env_logger = "0.11.5"
log = "0.4"
multimap = "0.10.0"
path-absolutize = "3.1.1"
regex = "1.11.1"
serde = { version = "1.0.194", features = ["derive"] }
serde_json = "1.0.110"
serde_with = { version = "3", features = ["macros"] }
tempfile = "3.13.0"