about summary refs log tree commit diff
path: root/tvix/serde/src/lib.rs
blob: 6a44affdc0e1ae854a9746a8713f81407f028531 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//! `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;