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)
19 lines
491 B
TOML
19 lines
491 B
TOML
[package]
|
|
name = "provctl-backend"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Service management backends for provctl (systemd, launchd, pidfile)"
|
|
|
|
[dependencies]
|
|
provctl-core = { path = "../provctl-core" }
|
|
provctl-config = { path = "../provctl-config" }
|
|
serde.workspace = true
|
|
log.workspace = true
|
|
tokio = { workspace = true, features = ["process", "fs", "rt"] }
|
|
async-trait = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|