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>
29 lines
928 B
TOML
29 lines
928 B
TOML
# GPU vendor/adapter detection + selection + the live-session record, extracted into a leaf crate so
|
|
# every subsystem crate (pf-encode, pf-capture, pf-vdisplay) can consult the selected GPU WITHOUT
|
|
# depending on the orchestrator (plan §W6). Self-contained: reads config + writes the pref store.
|
|
[package]
|
|
name = "pf-gpu"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "punktfunk host GPU vendor/adapter enumeration, selection preference, and active-session accounting."
|
|
publish = false
|
|
|
|
[dependencies]
|
|
pf-host-config = { path = "../pf-host-config" }
|
|
pf-paths = { path = "../pf-paths" }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.62", features = [
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Dxgi",
|
|
"Win32_Graphics_Dxgi_Common",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|