sa_token_plugin_rocket/lib.rs
1//! Facade: selects the Rocket semver binding crate via features.
2//! 门面:通过 feature 选择 Rocket 语义版本绑定 crate。
3//!
4//! - **`v05`** (default | 默认): `sa-token-plugin-rocket-v05` — Rocket **0.5.x**.
5
6#[cfg(not(feature = "v05"))]
7compile_error!("sa-token-plugin-rocket: enable `v05` (default).");
8
9#[cfg(feature = "v05")]
10pub use sa_token_plugin_rocket_v05::*;