schemaui 0.12.3

A Rust library for generating TUI and Web UIs from JSON Schemas for configuration management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "json")]
pub(crate) mod api;
pub(crate) mod io;
#[cfg(feature = "json")]
pub(crate) mod schema;
#[cfg(all(feature = "json", feature = "tui"))]
pub(crate) mod tui;
#[cfg(feature = "json")]
pub(crate) mod ui_ast;
#[cfg(all(feature = "json", feature = "web"))]
pub(crate) mod web;