11 lines
454 B
Rust
11 lines
454 B
Rust
//! Shared configuration schema declarations for Jay.
|
|
//!
|
|
//! This crate is the target home for option structs, defaults, validation
|
|
//! policy, and docs metadata that need to be consumed by TOML parsing,
|
|
//! generated config documentation, and compositor-side application code.
|
|
|
|
pub mod animations;
|
|
pub mod options;
|
|
|
|
pub use animations::{AnimationCurveConfig, Animations};
|
|
pub use options::{Libei, RepeatRate, SimpleIm, Tearing, UiDrag, Vrr, Xwayland};
|