Skip to content

Commit

Permalink
Update to MSRV 1.76
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Aug 7, 2024
1 parent 05522a8 commit 8a692f8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:

License check:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand All @@ -276,7 +276,7 @@ jobs:

Check vendored schema:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

Check Rust formatting:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run: rustup component add rustfmt
Expand All @@ -315,7 +315,7 @@ jobs:

Lint Rust with clippy:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run: rustup component add clippy
Expand All @@ -332,7 +332,7 @@ jobs:

Rust tests - stable:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
resource_class: "medium+"
steps:
- test-rust
Expand All @@ -349,22 +349,22 @@ jobs:
Rust tests - beta:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- test-rust:
rust-version: "beta"

Rust tests - minimum version:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
resource_class: "medium+"
steps:
- test-rust:
rust-version: "1.66.1"
rust-version: "1.76.0"

Generate Rust documentation:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- run:
Expand Down Expand Up @@ -660,7 +660,7 @@ jobs:
glean-swift release:
docker:
- image: cimg/rust:1.67
- image: cimg/rust:1.76
steps:
- checkout
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The code in this repository is organized as follows:
* [./glean-core/ios](glean-core/ios) contains the Swift bindings for use by iOS applications.
* [./glean-core/python](glean-core/python) contains Python bindings.

**Note: The Glean SDK requires at least [Rust 1.66.0](https://blog.rust-lang.org/2022/12/15/Rust-1.66.0.html). Older versions are untested.**
**Note: The Glean SDK requires at least [Rust 1.76.0](https://blog.rust-lang.org/2024/02/08/Rust-1.76.0.html). Older versions are untested.**

## Contact

Expand Down
2 changes: 1 addition & 1 deletion glean-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include = [
"/uniffi.toml",
"/build.rs",
]
rust-version = "1.66"
rust-version = "1.76"

[package.metadata.glean]
glean-parser = "14.5.1"
Expand Down
2 changes: 1 addition & 1 deletion glean-core/build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include = [
"/src",
"/Cargo.toml",
]
rust-version = "1.66"
rust-version = "1.76"

[dependencies]
xshell-venv = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion glean-core/rlb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ include = [
"/tests",
"/Cargo.toml",
]
rust-version = "1.66"
rust-version = "1.76"

[badges]
circle-ci = { repository = "mozilla/glean", branch = "main" }
Expand Down

0 comments on commit 8a692f8

Please sign in to comment.