Skip to content

Commit 1f8158e

Browse files
authored
Drop Rust 1.28 and 1.30 from CI (#51)
* Drop Rust 1.28 and 1.30 from CI * Cargo update
1 parent 5a65a4b commit 1f8158e

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ jobs:
77
name: Default
88
strategy:
99
matrix:
10-
# TODO: Fix libc build issues on macos-latest, which is now macos-12.
11-
platform: [ ubuntu-latest, macos-11, windows-latest ]
12-
toolchain: [ stable, 1.28.0, nightly ]
10+
platform: [ ubuntu-latest, macos-latest, windows-latest ]
11+
toolchain: [ stable, nightly ]
1312
runs-on: ${{ matrix.platform }}
1413
steps:
1514
- uses: actions/checkout@v3
@@ -22,8 +21,8 @@ jobs:
2221
name: no_std
2322
strategy:
2423
matrix:
25-
platform: [ ubuntu-latest, macos-11 ]
26-
toolchain: [ stable, 1.30.0, nightly ]
24+
platform: [ ubuntu-latest, macos-latest ]
25+
toolchain: [ stable, nightly ]
2726
runs-on: ${{ matrix.platform }}
2827
steps:
2928
- uses: actions/checkout@v3

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "min-sized-rust"
33
version = "0.1.0"
44
authors = ["johnthagen <johnthagen@gmail.com>"]
5+
edition = "2021"
56
license-file = "LICENSE.txt"
67

78
[dependencies]

build_std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "build_std"
33
version = "0.1.0"
4-
edition = "2018"
4+
edition = "2021"
55
license = "MIT"
66

77
[dependencies]

no_main/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "no_main"
33
version = "0.1.0"
44
authors = ["johnthagen <johnthagen@gmail.com>", "Vitaly '_Vi' Shukela <vi0oss@gmail.com>"]
5-
edition = "2018"
5+
edition = "2021"
66
license = "MIT"
77

88
[dependencies]

no_std/Cargo.lock

Lines changed: 7 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

no_std/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "min-sized-no_std"
33
version = "0.1.0"
44
authors = ["johnthagen <johnthagen@gmail.com>"]
5+
edition = "2021"
56
license = "MIT"
67

78
[dependencies]

0 commit comments

Comments
 (0)