Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,13 +3,15 @@ #![cfg_attr(all(not(test), not(feature = "std")), no_std)] +#![deny(elided_lifetimes_in_paths)] + #[cfg(feature = "alloc")] extern crate alloc; pub mod any; // mod build; -pub mod builtins; -// pub mod protocol; +// pub mod builtins; +pub mod protocol; pub mod symbol; // mod walk; |