rbt-core 0.0.2

DEPRECATED — use the unified `rbt` package (see README)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # DEPRECATED
//!
//! Use the unified [`rbt`](https://github.com/shan-alexander/rbt) package.
//! This crate name remains only because crates.io cannot delete published crates.

#![doc = "DEPRECATED: use https://github.com/shan-alexander/rbt"]

/// Always panics: this package is a deprecation stub.
#[deprecated(
    since = "0.0.2",
    note = "orphaned internal crate — use the unified rbt package: https://github.com/shan-alexander/rbt"
)]
pub fn deprecated_use_rbt_instead() {
    panic!(
        "rbt-core 0.0.2 is a deprecation stub. Use the unified rbt package: https://github.com/shan-alexander/rbt"
    );
}