mirror of
https://github.com/openai/codex.git
synced 2026-05-01 18:06:47 +00:00
Adds an environment crate and environment + file system abstraction. Environment is a combination of attributes and services specific to environment the agent is connected to: File system, process management, OS, default shell. The goal is to move most of agent logic that assumes environment to work through the environment abstraction.
22 lines
450 B
TOML
22 lines
450 B
TOML
[package]
|
|
name = "codex-environment"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_environment"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
codex-utils-absolute-path = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs", "io-util", "rt"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|