forked from unom/punktfunk
The eight W6 leaf crates hardcoded 0.12.0 instead of inheriting the workspace version — switched to version.workspace = true so the next bump is one line again. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
13 lines
539 B
TOML
13 lines
539 B
TOML
# The process-wide host configuration global (HostConfig + the config() OnceLock), extracted into a
|
|
# leaf crate so every subsystem crate (pf-encode, pf-capture, pf-vdisplay, pf-gpu) can read config
|
|
# WITHOUT depending on the orchestrator (plan §W6 — config parked above its consumers). Pure std.
|
|
[package]
|
|
name = "pf-host-config"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Process-wide punktfunk host configuration (env-parsed HostConfig behind a OnceLock)."
|
|
publish = false
|
|
|
|
[dependencies]
|