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
35
36
37
38
39
40
41
42
43
44
pub fn version_string() -> String {
format!("librespot-{}", short_sha())
}
pub fn now() -> &'static str {
env!("VERGEN_BUILD_TIMESTAMP")
}
pub fn short_now() -> &'static str {
env!("VERGEN_BUILD_DATE")
}
pub fn sha() -> &'static str {
env!("VERGEN_SHA")
}
pub fn short_sha() -> &'static str {
env!("VERGEN_SHA_SHORT")
}
pub fn commit_date() -> &'static str {
env!("VERGEN_COMMIT_DATE")
}
pub fn target() -> &'static str {
env!("VERGEN_TARGET_TRIPLE")
}
pub fn semver() -> &'static str {
env!("CARGO_PKG_VERSION")
}
pub fn build_id() -> &'static str {
env!("VERGEN_BUILD_ID")
}