diff options
author | Nadrieril | 2019-04-14 21:39:44 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-14 21:39:44 +0200 |
commit | 5bdded94d9197abbcf41313649619acb1baa62b7 (patch) | |
tree | 6427ef49f99b7b8f9e2eec2a636b43304a478ce5 /dhall_core | |
parent | 0044b1d32292aae3d10f9d8cb08bb0beec9bb05c (diff) |
Document roughly the dhall subcrates
Closes #72
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; |