5 个稳定版本

2.2.1 2019年8月22日
2.2.0 2019年3月18日
2.1.0 2019年2月27日
2.0.0 2019年2月27日
1.0.0 2019年2月27日

#25 in #println

MIT 许可证

11KB
161 代码行(不含注释)

Build Status Latest Version Rust Documentation codecov

查询并比较 crates.io 上crate的semver。

查看 rs 文档GitHub 仓库。

示例

use cratesiover::Status;
let query = cratesiover::query("cratesiover", &env!("CARGO_PKG_VERSION")).unwrap();

match query {
  Status::Behind(ver) => println!("crate is behind the version on crates.io {}", ver),
  Status::Equal(ver) => println!("crate is equal to the version on crates.io {}", ver),
  Status::Ahead(ver) => println!("crate is ahead of the version on crates.io {}", ver),
}

依赖项

~21–30MB
~538K SLoC