pub const VERSION: &str = "1.0.0";Expand description
The version of this crate, taken from Cargo.toml at compile time.
Exposed so a consumer can report the exact iqdb-cache build it links
against — useful in diagnostics and version-skew checks across the iqdb
crate family.
§Examples
let version = iqdb_cache::VERSION;
assert_eq!(version.split('.').count(), 3);
assert!(version.split('.').all(|part| !part.is_empty()));