/src/librustc_const_math/lib.rs

https://gitlab.com/alx741/rust · Rust · 43 lines · 21 code · 8 blank · 14 comment · 0 complexity · 4e54bfb5b29ba653633438fb9907874c MD5 · raw file

  1. // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. //! Rusty Mathematics
  11. //!
  12. //! # Note
  13. //!
  14. //! This API is completely unstable and subject to change.
  15. #![crate_name = "rustc_const_math"]
  16. #![unstable(feature = "rustc_private", issue = "27812")]
  17. #![crate_type = "dylib"]
  18. #![crate_type = "rlib"]
  19. #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
  20. html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
  21. html_root_url = "https://doc.rust-lang.org/nightly/")]
  22. #![feature(rustc_private)]
  23. #![feature(staged_api)]
  24. #![feature(question_mark)]
  25. #[macro_use] extern crate log;
  26. #[macro_use] extern crate syntax;
  27. extern crate serialize as rustc_serialize; // used by deriving
  28. mod int;
  29. mod us;
  30. mod is;
  31. mod err;
  32. pub use int::*;
  33. pub use us::*;
  34. pub use is::*;
  35. pub use err::{ConstMathErr, Op};