Constant cuprate_helper::constants::COMMIT

source ·
pub const COMMIT: &str = "e7c6bba63d7224decc0fd30f27fb50eb2072c4ea";
Expand description

The current commit hash of the root Cuprate repository.

§Case & length

It is guaranteed that COMMIT will be:

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