fabro/test/twin/openai/Cargo.toml
Bryan Helmkamp 80de5ca616 refactor(static): centralize env var names
Add fabro-static::EnvVars as the shared registry for fixed environment variable names and migrate env reads, clap env bindings, and subprocess/test allowlists to use it.

Add clippy bans for raw std::env lookup APIs so future dynamic env facades must be documented explicitly.
2026-04-24 12:29:51 -04:00

30 lines
625 B
TOML

[package]
name = "twin-openai"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Fake OpenAI-compatible server for local black-box testing"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
anyhow.workspace = true
async-stream = "0.3"
axum = { workspace = true, features = ["macros"] }
fabro-http.workspace = true
fabro-static.workspace = true
futures-util.workspace = true
http = "1"
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
[dev-dependencies]
tower = "0.5"