ceres-std 0.2.0

std bound for ceres
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Ceres `std` adaptor
#![cfg_attr(not(feature = "std"), no_std)]
mod no_std;
mod std;

#[cfg(feature = "std")]
pub use self::std::*;

#[cfg(not(feature = "std"))]
pub extern crate alloc;

#[cfg(not(feature = "std"))]
pub use self::no_std::*;