pub const COMMIT: &str = "ce7a04f2d964875a95530b4cb2cb9522f6fce2f4";
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);