- 3 Crates: - UI: Move existing crate - Daemon: Init binary crate - Config: Init library crate
14 lines
278 B
TOML
14 lines
278 B
TOML
[package]
|
|
name = "popcorn-conf"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Configuration structures and loader for Popcorn OSD."
|
|
license = "GPL-3+"
|
|
|
|
[dependencies]
|
|
dirs = "6.0.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
thiserror = "2.0.17"
|
|
toml = "0.9.8"
|
|
|