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.
23 lines
516 B
TOML
23 lines
516 B
TOML
[package]
|
|
name = "fabro-install"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
publish = false
|
|
license.workspace = true
|
|
description = "Shared install primitives for Fabro CLI and server flows"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
base64.workspace = true
|
|
ring = "0.17"
|
|
toml.workspace = true
|
|
fabro-config = { path = "../fabro-config" }
|
|
fabro-static.workspace = true
|
|
fabro-types = { path = "../fabro-types" }
|
|
fabro-vault = { path = "../fabro-vault" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|