commit | 360efd23b84a4165de3d7f77b4132c80b74c60e9 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Thu Jan 04 23:35:26 2018 -0800 |
committer | David Tolnay <dtolnay@gmail.com> | Fri Jan 05 14:22:13 2018 -0800 |
tree | 182384d86579ade4fb73ce90f92e71fdb264903c | |
parent | 636afa19e41a15269702a823c3bb4189a213e0a7 [diff] [blame] |
More useful literal api
diff --git a/src/lib.rs b/src/lib.rs index eb3eb1e..31d7512 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -82,7 +82,8 @@ #[cfg(any(feature = "full", feature = "derive"))] mod lit; #[cfg(any(feature = "full", feature = "derive"))] -pub use lit::{Lit, LitKind}; +pub use lit::{Lit, LitStr, LitByteStr, LitByte, LitChar, LitInt, LitFloat, LitBool, LitVerbatim, + StrStyle, IntSuffix, FloatSuffix}; #[cfg(any(feature = "full", feature = "derive"))] mod mac;