mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
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.
32 lines
801 B
TOML
32 lines
801 B
TOML
[package]
|
|
name = "fabro-test"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Test utilities for fabro integration tests"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
assert_cmd = "2"
|
|
axum = { workspace = true }
|
|
fabro-config = { path = "../fabro-config" }
|
|
fabro-proc = { path = "../fabro-proc" }
|
|
fabro-static.workspace = true
|
|
fabro-types = { path = "../fabro-types" }
|
|
fabro-util = { path = "../fabro-util" }
|
|
fabro-http.workspace = true
|
|
insta = { workspace = true, features = ["filters"] }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = "3"
|
|
tokio = { workspace = true }
|
|
toml = { workspace = true }
|
|
twin-openai = { workspace = true }
|
|
twin-github = { workspace = true }
|