orizentic 1.0.0

A library for inerfacing with a JWT auth token database and a command line tool for managing it.
1
2
3
4
5
6
7
8
9
10
extern crate version_check;

pub fn main() {
    let check_result = version_check::is_min_version("1.33.0");
    match check_result {
        Some((true, _)) => (),
        Some((false, _)) => panic!("not version 1.33.0"),
        None => panic!("could not find the version"),
    }
}