mirror of
https://github.com/openai/codex.git
synced 2026-04-30 09:26:44 +00:00
26 lines
492 B
TOML
26 lines
492 B
TOML
[package]
|
|
name = "codex-linux-sandbox"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "codex-linux-sandbox"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_linux_sandbox"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
codex-core = { path = "../core" }
|
|
codex-common = { path = "../common", features = ["cli"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = "0.2.172"
|
|
landlock = "0.4.1"
|
|
seccompiler = "0.5.0"
|