dioxus/packages/cli-config
2024-09-17 17:44:02 -07:00
..
src Remove unneeded build file 2024-09-17 17:44:02 -07:00
.gitignore pull out the CLI config data into a separate library 2023-11-08 12:48:25 -06:00
Cargo.toml Simplify cli-config, hotreload -> devtools (drop to 0 deps, fast compile times) (#2975) 2024-09-17 17:18:23 -07:00
README.md Simplify cli-config, hotreload -> devtools (drop to 0 deps, fast compile times) (#2975) 2024-09-17 17:18:23 -07:00

dioxus-cli-config

A crate that provides key/value names and types for configuring Dioxus applications at runtime.

This crate exists for us to very cleanly define the exact fields we want to pass down to Dioxus applications at runtime but without exposing the entire config object.

This leads to faster compile times, smaller binaries, and a clearer distinction between the config and the application.