1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/// Generate a timestamp representing now (UTC) in RFC3339 format. pub fn now() -> &'static str { "2017-02-01T05:43:30Z" } /// Generate a timstamp string representing now (UTC). pub fn short_now() -> &'static str { "2017-02-01" } /// Generate a SHA string pub fn sha() -> &'static str { "b2ecf1c5a42e74362b2a45fee6ee31521c79b246" } /// Generate a short SHA string pub fn short_sha() -> &'static str { "b2ecf1c" } /// Generate the commit date string pub fn commit_date() -> &'static str { "2017-01-31" } /// Generate the target triple string pub fn target() -> &'static str { "x86_64-unknown-linux-gnu" } /// Generate a semver string pub fn semver() -> &'static str { "" }