Skip to content

Commit

Permalink
update MSRV to v1.70.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluis committed Jul 26, 2023
1 parent 779143d commit f872d8f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
strategy:
matrix:
# NOTE: custom
msrv: [1.65.0]
msrv: [1.70.0]
steps:
- name: "checkout"
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "ladata"
description = "A simple & modular data model."
version = "0.0.27"
edition = "2021"
rust-version = "1.65"
rust-version = "1.70"
authors = ["José Luis Cruz <[email protected]>"]
repository = "https://github.com/andamira/ladata"
documentation = "https://docs.rs/ladata"
Expand Down
2 changes: 1 addition & 1 deletion check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e # stops on error

MSRV="1.65.0"
MSRV="1.70.0"
RCMD="rustup -v run $MSRV"

rustup override set $MSRV
Expand Down
2 changes: 1 addition & 1 deletion src/mem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl Storage for () {
pub use all::*;
pub(crate) mod all {
#[doc(inline)]
pub use super::{direct::Direct, bit_size::*, Storage};
pub use super::{bit_size::*, direct::Direct, Storage};

#[doc(inline)]
#[cfg(feature = "alloc")]
Expand Down

0 comments on commit f872d8f

Please sign in to comment.