fabro/lib/crates/fabro-devcontainer/Cargo.toml
Bryan Helmkamp 2bbc0d3ef9
Fix: Remove std::env::set_var/remove_var from tests (#101)
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>
2026-03-19 13:09:46 -04:00

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"