version

Function version 

Source
pub fn version() -> &'static str
Expand description

Returns the version of the sublime_pkg_tools crate.

This function provides a convenient way to retrieve the crate version at runtime.

§Returns

A string slice containing the version number in semver format (e.g., “0.1.0”).

§Examples

use sublime_pkg_tools::version;

let ver = version();
assert!(!ver.is_empty());
println!("sublime_pkg_tools version: {}", ver);