diff options
Diffstat (limited to 'dhall_core')
-rw-r--r-- | dhall_core/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dhall_core/src/lib.rs b/dhall_core/src/lib.rs index 62c0ecd..3db8222 100644 --- a/dhall_core/src/lib.rs +++ b/dhall_core/src/lib.rs @@ -7,6 +7,11 @@ clippy::type_complexity )] +//! This crate contains the core AST-handling primitives for the [dhall-rust][dhall-rust] crate. +//! This is highly unstable and breaks regularly; use at your own risk. +//! +//! [dhall-rust]: https://github.com/Nadrieril/dhall-rust + mod core; pub use crate::core::*; mod import; |