jlrs_compat/
lib.rs

1//! The range of Julia versions supported by jlrs and current stable Julia version.
2//!
3//! NB: jlrs docs are currently always built for the stable version.
4
5/// Minimum supported Julia minor version
6pub const MIN_MINOR_VERSION: u32 = 10;
7
8/// Maximum supported Julia minor version
9pub const MAX_MINOR_VERSION: u32 = 13;
10
11/// Current stable Julia major version
12pub const STABLE_MAJOR_VERSION: u32 = 1;
13
14/// Current stable Julia minor version
15pub const STABLE_MINOR_VERSION: u32 = 11;