diff options
author | Nadrieril | 2019-05-04 12:40:48 +0200 |
---|---|---|
committer | Nadrieril | 2019-05-04 12:40:48 +0200 |
commit | 4f04d1e6f02113ad0f539b723333f8f1f5734f13 (patch) | |
tree | 140e2a97597d1f340191c9603313119e6661ec65 /dhall/src | |
parent | 45be2ff1f5bb3d6e0faa098402adf985b3d5e7ca (diff) |
Rename dhall_generator to dhall_proc_macros
Diffstat (limited to '')
-rw-r--r-- | dhall/src/lib.rs | 2 | ||||
-rw-r--r-- | dhall/src/normalize.rs | 2 | ||||
-rw-r--r-- | dhall/src/traits/static_type.rs | 2 | ||||
-rw-r--r-- | dhall/src/typecheck.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index 6e4361f..a531f64 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -140,7 +140,7 @@ mod typecheck; pub mod de { pub use crate::traits::{Deserialize, SimpleStaticType, StaticType}; #[doc(hidden)] - pub use dhall_generator::SimpleStaticType; + pub use dhall_proc_macros::SimpleStaticType; /// Deserialize an instance of type T from a string of Dhall text. /// diff --git a/dhall/src/normalize.rs b/dhall/src/normalize.rs index c64bb4a..c035d93 100644 --- a/dhall/src/normalize.rs +++ b/dhall/src/normalize.rs @@ -7,7 +7,7 @@ use dhall_syntax::{ rc, BinOp, Builtin, Const, ExprF, Integer, InterpolatedText, InterpolatedTextContents, Label, Natural, SubExpr, V, X, }; -use dhall_generator as dhall; +use dhall_proc_macros as dhall; use crate::expr::{Normalized, Type, Typed, TypedInternal}; diff --git a/dhall/src/traits/static_type.rs b/dhall/src/traits/static_type.rs index 6e42da8..60b894c 100644 --- a/dhall/src/traits/static_type.rs +++ b/dhall/src/traits/static_type.rs @@ -1,6 +1,6 @@ use crate::expr::*; use dhall_syntax::*; -use dhall_generator as dhall; +use dhall_proc_macros as dhall; /// A value that has a statically-known Dhall type. /// diff --git a/dhall/src/typecheck.rs b/dhall/src/typecheck.rs index 1683fbf..0b8ea53 100644 --- a/dhall/src/typecheck.rs +++ b/dhall/src/typecheck.rs @@ -10,7 +10,7 @@ use crate::traits::DynamicType; use dhall_syntax; use dhall_syntax::context::Context; use dhall_syntax::*; -use dhall_generator as dhall; +use dhall_proc_macros as dhall; use self::TypeMessage::*; |