Merge _configs/ into config/ for single configuration directory. Update all path references. Changes: - Move _configs/* to config/ - Update .gitignore for new patterns - No code references to _configs/ found Impact: -1 root directory (layout_conventions.md compliance)
18 lines
375 B
TOML
18 lines
375 B
TOML
[package]
|
|
name = "provctl-config"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Configuration loading and parsing for provctl"
|
|
|
|
[dependencies]
|
|
provctl-core = { path = "../provctl-core" }
|
|
serde.workspace = true
|
|
toml = "0.8"
|
|
thiserror.workspace = true
|
|
log.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|