Files
codex/codex-rs/lmstudio/Cargo.toml
Josh McKinney ec49b56874 chore: add cargo-deny configuration (#7119)
- 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
2025-11-24 12:22:18 -08:00

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