mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
28 lines
523 B
TOML
28 lines
523 B
TOML
[package]
|
|
name = "codex-stdio-to-uds"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "codex-stdio-to-uds"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codex_stdio_to_uds"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
uds_windows = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
codex-utils-cargo-bin = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|