Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ definitions:
- main
- release
- msrv_image: &msrv-image
cimg/rust:1.87
cimg/rust:1.90
- msrv: &msrv
"1.87"
"1.90"
# Used when running against latest stable Rust
- rust_image: &rust-image
cimg/rust:1.92
cimg/rust:1.94.1

##########################################################################
# COMMANDS
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.87.0](https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/). Older versions are untested.**
**Note: The Glean SDK requires at least [Rust 1.90.0](https://blog.rust-lang.org/2025/09/18/Rust-1.90.0/). 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.87"
rust-version = "1.90"

[package.metadata.glean]
glean-parser = "19.0.0"
Expand Down
2 changes: 1 addition & 1 deletion glean-core/benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
license = "MPL-2.0"
# MSRV. Independent from what glean-core needs.
# Note: We only test against latest stable on CI.
rust-version = "1.87"
rust-version = "1.90"

[dependencies]
glean-core = { path = "../", features = ["benchmark"] }
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.87"
rust-version = "1.90"

[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.87"
rust-version = "1.90"

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