aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/semver.rs
blob: fe370d82fa7eaff06eecdc4487ac64c023e0f700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[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!()
    }
}