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
2 changes: 1 addition & 1 deletion .github/setup-rust-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
runs:
using: composite
steps:
- uses: dtolnay/rust-toolchain@1.91.1
- uses: dtolnay/rust-toolchain@1.95.0
with:
targets: i686-pc-windows-msvc,x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
# LIBCLANG_PATH must be set explicitly so the vcxproj uses the LLVM we
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@1.91.1
- uses: dtolnay/rust-toolchain@1.95.0
with:
targets: ${{ matrix.arch }}-linux-android
- name: Build and test
Expand All @@ -399,7 +399,7 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: dtolnay/rust-toolchain@1.91.1
- uses: dtolnay/rust-toolchain@1.95.0
with:
targets: aarch64-apple-ios-sim
# GitHub recommends explicitly selecting the desired Xcode version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-wasi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: dtolnay/rust-toolchain@1.91.1
- uses: dtolnay/rust-toolchain@1.95.0
with:
targets: wasm32-wasip1
- name: "Runner image version"
Expand Down
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ members = [
"Modules/_base64", "Modules/cpython-build-helper", "Modules/cpython-rust-staticlib",
"Modules/cpython-sys"
]

[workspace.package]
# Make sure to also update the Rust toolchains in GitHub Actions whenever this version is modified
rust-version = "1.95"
Comment thread
emmatyping marked this conversation as resolved.
1 change: 1 addition & 0 deletions Modules/_base64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "_base64"
version = "0.1.0"
edition = "2024"
rust-version.workspace = true

[dependencies]
cpython-sys ={ path = "../cpython-sys" }
Expand Down
1 change: 1 addition & 0 deletions Modules/cpython-build-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "cpython-build-helper"
version = "0.1.0"
edition = "2024"
rust-version.workspace = true

[dependencies]
shlex = "1.3"
1 change: 1 addition & 0 deletions Modules/cpython-rust-staticlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "cpython-rust-staticlib"
version = "0.1.0"
edition = "2024"
rust-version.workspace = true

[dependencies]
_base64 ={ path = "../_base64" }
Expand Down
1 change: 1 addition & 0 deletions Modules/cpython-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "cpython-sys"
version = "0.1.0"
edition = "2024"
rust-version.workspace = true

[dependencies]

Expand Down
3 changes: 0 additions & 3 deletions rust-toolchain.toml

This file was deleted.

Loading