8 lines
276 B
Rust
8 lines
276 B
Rust
|
|
//! The base support library for mdbook, intended for internal use only.
|
||
|
|
|
||
|
|
/// The current version of `mdbook`.
|
||
|
|
///
|
||
|
|
/// This is provided as a way for custom preprocessors and renderers to do
|
||
|
|
/// compatibility checks.
|
||
|
|
pub const MDBOOK_VERSION: &str = env!("CARGO_PKG_VERSION");
|