blob: 2051445305f32921159f4db8a2ba05e2597bb777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! ref: composer/vendor/composer/semver/src/Semver.php
#[derive(Debug)]
pub struct Semver;
impl Semver {
pub fn sort(_versions: Vec<String>) -> anyhow::Result<Vec<String>> {
todo!()
}
pub fn rsort(_versions: Vec<String>) -> Vec<String> {
todo!()
}
pub fn satisfies(_version: &str, _constraint: &str) -> bool {
todo!()
}
}
|