27 lines
519 B
TOML
27 lines
519 B
TOML
|
|
[package]
|
||
|
|
name = "codex-exec"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "codex-exec"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "codex_exec"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1"
|
||
|
|
clap = { version = "4", features = ["derive"] }
|
||
|
|
codex-core = { path = "../core" }
|
||
|
|
tokio = { version = "1", features = [
|
||
|
|
"io-std",
|
||
|
|
"macros",
|
||
|
|
"process",
|
||
|
|
"rt-multi-thread",
|
||
|
|
"signal",
|
||
|
|
] }
|
||
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
||
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|