Skip to content

Commit

Permalink
change MSRV to 1.70
Browse files Browse the repository at this point in the history
The home crate, which is a dependency of the galmon feature, now
needs Rust 1.70.
  • Loading branch information
daniestevez committed Jan 5, 2024
1 parent ff50547 commit 6870ad4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
sudo apt-get update
sudo apt-get install protobuf-compiler
- name: Install toolchain
run: rustup install 1.65.0
run: rustup install 1.70.0
- name: Doc
run: cargo +1.65.0 doc --features galmon
run: cargo +1.70.0 doc --features galmon
- name: Build
run: cargo +1.65.0 build --verbose --features galmon
run: cargo +1.70.0 build --verbose --features galmon
- name: Run tests
run: cargo +1.65.0 test --verbose --features galmon
run: cargo +1.70.0 test --verbose --features galmon

galmon:
name: Galmon
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/daniestevez/galileo-osnma/"
keywords = ["galileo", "gnss", "osnma", "authentication", "cryptography"]
categories = ["aerospace::space-protocols", "authentication", "embedded", "no-std"]
exclude = ["/.github"]
rust-version = "1.65.0"
rust-version = "1.70.0"

[package.metadata]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ functionality and usability of galileo-osnma:

## Minimum Supported Rust Version

Rust **1.65** or higher.
Rust **1.70** or higher.

Minimum supported Rust version can be changed in the future, but it will be done
with a minor version bump.
Expand Down

0 comments on commit 6870ad4

Please sign in to comment.