mirror of
https://github.com/openai/codex.git
synced 2026-03-05 21:45:28 +03:00
we can't use runfiles directory on Windows due to path lengths, so swap to manifest strategy. Parsing the manifest is a bit complex and the format is changing in Bazel upstream, so pull in the official Rust library (via a small hack to make it importable...) and cleanup all the associated logic to work cleanly in both bazel and cargo without extra confusion
14 lines
257 B
TOML
14 lines
257 B
TOML
[package]
|
|
name = "codex-utils-cargo-bin"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
assert_cmd = { workspace = true }
|
|
runfiles = { workspace = true }
|
|
thiserror = { workspace = true }
|