ceres-std 0.2.0

std bound for ceres
1
2
3
4
5
6
7
8
9
10
11
12
//! common std dependencies
#![cfg(feature = "std")]
pub use std::{
    borrow::ToOwned,
    boxed::Box,
    collections::BTreeMap,
    fmt, format,
    rc::Rc,
    string::{String, ToString},
    vec,
    vec::Vec,
};