blob: 6a44affdc0e1ae854a9746a8713f81407f028531 (
plain) (
tree)
|
|
//! `tvix-serde` implements (de-)serialisation of Rust data structures
//! to/from Nix. This is intended to make it easy to use Nix as as
//! configuration language.
mod de;
mod error;
pub use de::from_str;
pub use de::from_str_with_config;
#[cfg(test)]
mod de_tests;
|