Skip to content

Commit 338648b

Browse files
committed
Bump to msrv to 1.83.0
1 parent b1cd0b6 commit 338648b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Run CI
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [main]
55
paths-ignore:
6-
- '**.md' # Do not need to run CI for markdown changes.
6+
- "**.md" # Do not need to run CI for markdown changes.
77
pull_request:
8-
branches: [ main ]
8+
branches: [main]
99
paths-ignore:
10-
- '**.md'
10+
- "**.md"
1111

1212
jobs:
1313
ci-build:
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Setup rust tooling
2222
run: |
23-
rustup override set 1.82
23+
rustup override set 1.83
2424
rustup component add rustfmt clippy
2525
2626
- uses: ./.github/actions/ci

.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.82
22+
rustup override set 1.83
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
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup rust tooling
2525
if: ${{ steps.release.outputs['eventsource-client--release_created'] == 'true' }}
2626
run: |
27-
rustup override set 1.82
27+
rustup override set 1.83
2828
rustup component add rustfmt clippy
2929
3030
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0

eventsource-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Client for the Server-Sent Events protocol (aka EventSource)"
55
repository = "https://github.com/launchdarkly/rust-eventsource-client"
66
authors = ["LaunchDarkly"]
77
edition = "2021"
8-
rust-version = "1.82.0"
8+
rust-version = "1.83.0"
99
license = "Apache-2.0"
1010
keywords = ["launchdarkly", "feature-flags", "feature-toggles", "eventsource", "server-sent-events"]
1111
exclude = ["CHANGELOG.md"]

0 commit comments

Comments
 (0)