Files
RedBear-OS/init/Cargo.toml
T
bjorn3 f364bf1f60 init: Introduce a json format for services
While I would have like to use toml, something inside the toml crate
seems to be using randomness, which is not yet available when init
starts.
2026-02-25 20:18:42 +01:00

14 lines
248 B
TOML

[package]
name = "init"
version = "0.1.0"
edition = "2024"
license = "MIT"
[dependencies]
libredox.workspace = true
serde = { version = "1", features = ["derive"] }
serde_json = "1"
config = { path = "../config" }
daemon = { path = "../daemon" }