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