mirror of
https://github.com/openai/codex.git
synced 2026-04-26 07:35:29 +00:00
- add GitHub workflow running cargo-deny on push/PR - document cargo-deny allowlist with workspace-dep notes and advisory ignores - align workspace crates to inherit version/edition/license for consistent checks
26 lines
512 B
TOML
26 lines
512 B
TOML
[package]
|
|
name = "codex-lmstudio"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_lmstudio"
|
|
path = "src/lib.rs"
|
|
|
|
|
|
[dependencies]
|
|
codex-core = { path = "../core" }
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt"] }
|
|
tracing = { version = "0.1.41", features = ["log"] }
|
|
which = "6.0"
|
|
|
|
[dev-dependencies]
|
|
wiremock = "0.6"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[lints]
|
|
workspace = true
|