fabro/lib/crates/fabro-devcontainer/Cargo.toml
Bryan Helmkamp 3b2cffceaf refactor(http): centralize reqwest behind fabro-http
Add the shared fabro-http transport crate and route hand-written HTTP client construction through it.

Use FABRO_HTTP_PROXY_POLICY for test no-proxy defaults, remove direct reqwest deps from ordinary crates, and add clippy bans for raw reqwest entrypoints.
2026-04-12 11:48:54 -04:00

28 lines
655 B
TOML

[package]
name = "fabro-devcontainer"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Parse and resolve devcontainer.json into Dockerfiles and lifecycle hooks"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
fabro-util = { path = "../fabro-util" }
fabro-http.workspace = true
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = "0.9"
thiserror = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }
[dev-dependencies]
insta = { workspace = true }
tokio = { workspace = true, features = ["test-util", "macros"] }
tempfile = "3"