blob: 41ad23b1858708a4f6e93b0543f6e5967a9b7516 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
//! `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;
#[cfg(test)]
mod de_tests;
|