snix_serde/
lib.rs

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.
4
5mod de;
6mod error;
7
8pub use de::from_str;
9pub use de::from_str_with_config;
10
11#[cfg(test)]
12mod de_tests;