Skip to content

Commit 0c1c58d

Browse files
authored
fix: Bump rustc to 1.74 (#78)
1 parent 18e3535 commit 0c1c58d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Setup rust tooling
2222
run: |
23-
rustup override set 1.70
23+
rustup override set 1.74
2424
rustup component add rustfmt clippy
2525
2626
- uses: ./.github/actions/ci
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Setup rust tooling
5151
run: |
52-
rustup override set 1.70
52+
rustup override set 1.74
5353
rustup component add rustfmt clippy
5454
rustup target add x86_64-unknown-linux-musl
5555

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Setup rust tooling
2121
run: |
22-
rustup override set 1.70
22+
rustup override set 1.74
2323
rustup component add rustfmt clippy
2424
2525
- uses: ./.github/actions/ci

.github/workflows/release-please.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup rust tooling
2929
if: ${{ steps.release.outputs.releases_created }}
3030
run: |
31-
rustup override set 1.70
31+
rustup override set 1.74
3232
rustup component add rustfmt clippy
3333
3434
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0

contract-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "contract-tests"
33
version = "0.1.0"
44
edition = "2021"
5-
rust-version = "1.70.0" # MSRV
5+
rust-version = "1.74.0" # MSRV
66
license = "Apache-2.0"
77

88
[dependencies]

launchdarkly-server-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "LaunchDarkly Server-Side SDK"
44
version = "2.1.0"
55
authors = ["LaunchDarkly"]
66
edition = "2021"
7-
rust-version = "1.70.0" # MSRV
7+
rust-version = "1.74.0" # MSRV
88
license = "Apache-2.0"
99
homepage = "https://docs.launchdarkly.com/sdk/server-side/rust"
1010
repository = "https://github.com/launchdarkly/rust-server-sdk"

0 commit comments

Comments
 (0)