Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Run CI
on:
push:
branches: [ main, 'feat/**' ]
branches: [main, "feat/**"]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
- "**.md" # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
branches: [main, "feat/**"]
paths-ignore:
- '**.md'
- "**.md"

jobs:
ci-build:
Expand All @@ -20,21 +20,21 @@ jobs:

- name: Setup rust tooling
run: |
rustup override set 1.82
rustup override set 1.83
rustup component add rustfmt clippy

- uses: ./.github/actions/ci

- name: 'Run contract tests with hyper_rustls'
- name: "Run contract tests with hyper_rustls"
uses: ./.github/actions/contract-tests
with:
tls_feature: 'rustls'
tls_feature: "rustls"
token: ${{ secrets.GITHUB_TOKEN }}

- name: 'Run contract tests with hyper_tls'
- name: "Run contract tests with hyper_tls"
uses: ./.github/actions/contract-tests
with:
tls_feature: 'tls'
tls_feature: "tls"
token: ${{ secrets.GITHUB_TOKEN }}

- uses: ./.github/actions/build-docs
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Setup rust tooling
run: |
rustup override set 1.82
rustup override set 1.83
rustup component add rustfmt clippy
rustup target add x86_64-unknown-linux-musl

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Setup rust tooling
run: |
rustup override set 1.82
rustup override set 1.83
rustup component add rustfmt clippy

- uses: ./.github/actions/ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup rust tooling
if: ${{ steps.release.outputs['launchdarkly-server-sdk--release_created'] == 'true' }}
run: |
rustup override set 1.82
rustup override set 1.83
rustup component add rustfmt clippy

- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion contract-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "contract-tests"
version = "0.1.0"
edition = "2021"
rust-version = "1.82.0" # MSRV
rust-version = "1.83.0" # MSRV
license = "Apache-2.0"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions launchdarkly-server-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "LaunchDarkly Server-Side SDK"
version = "2.6.1"
authors = ["LaunchDarkly"]
edition = "2021"
rust-version = "1.82.0" # MSRV
rust-version = "1.83.0" # MSRV
license = "Apache-2.0"
homepage = "https://docs.launchdarkly.com/sdk/server-side/rust"
repository = "https://github.com/launchdarkly/rust-server-sdk"
Expand Down Expand Up @@ -38,7 +38,7 @@ hyper = { version = "0.14.19", features = ["client", "http1", "http2", "tcp"] }
hyper-rustls = { version = "0.24.1" , optional = true}
rand = "0.9"
flate2 = { version = "1.0.35", optional = true }
aws-lc-rs = "1.13.3"
aws-lc-rs = "1.14.1"

[dev-dependencies]
maplit = "1.0.1"
Expand Down
Loading