rbt_engine/lib.rs
1//! # DEPRECATED
2//!
3//! Use the unified [`rbt`](https://github.com/shan-alexander/rbt) package.
4//! This crate name remains only because crates.io cannot delete published crates.
5
6#![doc = "DEPRECATED: use https://github.com/shan-alexander/rbt"]
7
8/// Always panics: this package is a deprecation stub.
9#[deprecated(
10 since = "0.0.2",
11 note = "orphaned internal crate — use the unified rbt package: https://github.com/shan-alexander/rbt"
12)]
13pub fn deprecated_use_rbt_instead() {
14 panic!(
15 "rbt-engine 0.0.2 is a deprecation stub. Use the unified rbt package: https://github.com/shan-alexander/rbt"
16 );
17}