https://github.com/tyilo/msrv-bump
https://github.com/tyilo/msrv-bump
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tyilo/msrv-bump
- Owner: tyilo
- Created: 2024-03-07T12:15:12.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T12:16:30.000Z (over 2 years ago)
- Last Synced: 2024-04-24T03:16:50.743Z (about 2 years ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# msrv-bump
Finds MSRV bumps in packages according to the `rust-version` field. Uses the [crates.io](https://crates.io/) API.
Usage:
```
$ cargo run toml
0.8.8 -> 0.8.9: Some("1.67") -> Some("1.69")
0.8.2 -> 0.8.3: Some("1.66.0") -> Some("1.67")
0.7.6 -> 0.7.7: Some("1.64.0") -> Some("1.66.0")
0.7.3 -> 0.7.4: Some("1.60.0") -> Some("1.64.0")
0.5.11 -> 0.6.0: Some("1.48.0") -> Some("1.60.0")
0.5.9 -> 0.5.10: None -> Some("1.48.0")
```