Skip to content

Commit

Permalink
Fix CI error and bump MSRV to 1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoll committed Dec 5, 2024
1 parent 60481a2 commit e3aae71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install Rust toolchain
# Use specific Rust version that is the minimum supported `rust-version`
# (MSRV) from `Cargo.toml`.
uses: dtolnay/rust-toolchain@1.77
uses: dtolnay/rust-toolchain@1.80

- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Changed

- Breaking: Bump Minimum Supported Rust Version (MSRV) to 1.80.
- Breaking: Change type `Certificate` to hold certificate without private key.
- Breaking: Use new types `Certificate` and `PrivateKey` instead of raw `&[u8]` in
`ua::ClientBuilder::default_encryption()`, `ua::ServerBuilder::default_with_security_policies()`.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name = "open62541"
version = "0.6.6"
authors = ["HMI Project"]
edition = "2021"
# Keep the MSRV number here in sync with `test.yaml`. We require Rust 1.77 since
# we want to use C-string literals.
rust-version = "1.77"
# Keep the MSRV number here in sync with `test.yaml`. We require Rust 1.80 since
# we want to conveniently exclude examples from published crate.
rust-version = "1.80"
description = "High-level, safe bindings for the C99 library open62541, an open source and free implementation of OPC UA (OPC Unified Architecture)."
documentation = "https://docs.rs/open62541"
readme = "README.md"
Expand Down

0 comments on commit e3aae71

Please sign in to comment.