Skip to content

Commit

Permalink
Try to improve feature docs on docs.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Mar 31, 2021
1 parent a366fac commit 169e08a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,14 @@ mod quantile;
mod traits;
#[macro_use] mod histogram;
#[cfg(feature = "nightly")]
#[cfg_attr(doc_cfg, feature(nightly))]
pub mod histogram_const;

pub use crate::moments::{Mean, Variance, Skewness, Kurtosis, MeanWithError};
pub use crate::weighted_mean::{WeightedMean, WeightedMeanWithError};
pub use crate::minmax::{Min, Max};
#[cfg(any(feature = "std", feature = "libm"))]
#[cfg_attr(doc_cfg, any(feature(std), feature(libm)))]
pub use crate::quantile::Quantile;
pub use crate::traits::{Estimate, Merge, Histogram};
pub use crate::histogram::{InvalidRangeError, SampleOutOfRangeError};
Expand Down

0 comments on commit 169e08a

Please sign in to comment.