Skip to main content

COMMIT

Constant COMMIT 

Source
pub const COMMIT: &str = "0342c5886db5bffcd5261520f9deda1726d6be79";
Expand description

The current commit hash of the root Cuprate repository.

ยงCase & length

It is guaranteed that COMMIT will be:

  • Lowercase ASCII
  • 40 characters long (no newline)
assert!(COMMIT.is_ascii());
assert_eq!(COMMIT.len(), 40);
assert_eq!(COMMIT.to_lowercase(), COMMIT);