2025-10-20 20:57:37 +01:00
|
|
|
[package]
|
|
|
|
|
edition = "2021"
|
2025-11-24 12:22:18 -08:00
|
|
|
license.workspace = true
|
2025-10-20 20:57:37 +01:00
|
|
|
name = "codex-utils-pty"
|
2025-11-24 12:22:18 -08:00
|
|
|
version.workspace = true
|
2025-10-20 20:57:37 +01:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
portable-pty = { workspace = true }
|
2026-01-14 18:44:04 +00:00
|
|
|
tokio = { workspace = true, features = ["io-util", "macros", "process", "rt-multi-thread", "sync", "time"] }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = { workspace = true }
|
2025-12-09 09:23:51 -08:00
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
|
filedescriptor = "0.8.3"
|
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
|
log = { workspace = true }
|
|
|
|
|
shared_library = "0.1.9"
|
|
|
|
|
winapi = { version = "0.3.9", features = [
|
|
|
|
|
"handleapi",
|
|
|
|
|
"minwinbase",
|
|
|
|
|
"processthreadsapi",
|
|
|
|
|
"synchapi",
|
|
|
|
|
"winbase",
|
|
|
|
|
"wincon",
|
|
|
|
|
"winerror",
|
|
|
|
|
"winnt",
|
|
|
|
|
] }
|
2026-01-14 18:44:04 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
libc = { workspace = true }
|