• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 This library is a shim around `lazy_static` that disambiguates it with the `lazy_static`
3 that's shipped with the Rust toolchain. We re-export the entire public API of `lazy_static`
4 under a different crate name so that can be imported in the compile tests.
5 
6 This currently appears to use the right local build of `lazy_static`.
7 */
8 
9 extern crate lazy_static;
10 
11 pub use self::lazy_static::*;
12