Skip to main content

rangebar_core/
lib.rs

1//! # rangebar-core has been renamed to opendeviationbar-core
2//!
3//! This crate is a shim that re-exports everything from
4//! [`opendeviationbar-core`](https://crates.io/crates/opendeviationbar-core).
5//!
6//! ## Migration
7//!
8//! Update your `Cargo.toml`:
9//!
10//! ```toml
11//! # Before
12//! rangebar-core = "12"
13//!
14//! # After
15//! opendeviationbar-core = "12"
16//! ```
17//!
18//! The algorithm uses open-anchored deviation thresholds (not classic Nicolellis
19//! range bars), so the name was updated to reflect this.
20
21#[deprecated(
22    since = "13.0.0",
23    note = "rangebar-core has been renamed to opendeviationbar-core. Update your Cargo.toml dependency."
24)]
25pub use opendeviationbar_core::*;