[no description]
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..1595c63 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,28 @@ +//! provides bigints, but const. +#![feature( + const_drop_in_place, + generic_const_exprs, + const_eval_select, + const_manually_drop_take, + exact_div, + exact_bitshifts, + const_default, + core_intrinsics, + const_destruct, + const_heap, + const_ops, + const_cmp, + const_trait_impl, + const_index, + const_convert, + const_result_trait_fn, + derive_const, + const_clone +)] +#![allow(warnings)] + +pub mod ap; +pub mod array_ap; +pub mod xp; +#[doc(inline)] +pub use ap::*; |