mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-22 00:31:12 +00:00
Configure clippy `wildcard_imports = "warn"` at the workspace level and opt all 28 crates in via `[lints] workspace = true`. Fix the three production glob imports that triggered warnings: fabro-sandbox read_guard, fabro-cli main, and fabro-api demo module (allowed via attribute since it constructs many API types by design). Document the import style convention in CLAUDE.md. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 lines
642 B
TOML
27 lines
642 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
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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"
|