1//! `snix-serde` implements (de-)serialisation of Rust data structures
2//! to/from Nix. This is intended to make it easy to use Nix as as
3//! configuration language.
45mod de;
6mod error;
78pub use de::from_str;
9pub use de::from_str_with_config;
1011#[cfg(test)]
12mod de_tests;