mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +00:00
Introduce an Env trait in fabro-util so tests can inject a HashMap-backed TestEnv instead of mutating process-global environment variables, which is unsafe since Rust 1.66+ and causes flakiness in concurrent tests. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
616 B
TOML
24 lines
616 B
TOML
[package]
|
|
name = "fabro-devcontainer"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
description = "Parse and resolve devcontainer.json into Dockerfiles and lifecycle hooks"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
fabro-util = { path = "../fabro-util" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9"
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
tempfile = "3"
|