pub fn CompareVersions(v1: &str, v2: &str) -> i32
Compare two semver strings. Returns 1 if v1 > v2, -1 if v1 < v2, 0 if equal.
1
v1 > v2
-1
v1 < v2
0