//! Metadata about the Neon version and build.
use Version;
/// The Neon version.
pub const VERSION: &str = env!;
/// The Neon major version.
pub const MAJOR: &str = env!;
/// The Neon minor version.
pub const MINOR: &str = env!;
/// The Neon patch version.
pub const PATCH: &str = env!;
/// Produces a `semver::Version` data structure representing the Neon version.