diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 56756a4..53b887d 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -79,7 +79,7 @@ jobs: container: ${{ matrix.image }} # Named rather than left to the toolchain file, which the # build container does not read. - rust-toolchain: 1.97.1 + rust-toolchain: 1.98.0 args: --release --out dist -i /opt/python/cp311-cp311/bin/python # A shared object cannot have a static C runtime linked into # it, which is the musl default and a no-op everywhere else. diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 5ac75c2..820bf7d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -140,7 +140,7 @@ jobs: container: ${{ matrix.image || 'auto' }} # Named rather than left to the toolchain file, which the # build container does not read. - rust-toolchain: 1.97.1 + rust-toolchain: 1.98.0 # The interpreter, named, on the rows that build in a # container. Left to the path everywhere else, where # setup-python above put the row's interpreter first. An diff --git a/Cargo.toml b/Cargo.toml index 0466f3b..e494801 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "zudb-python" version = "0.0.1" edition = "2024" -rust-version = "1.97" +rust-version = "1.98" license = "Apache-2.0" repository = "https://github.com/tamnd/zu-python" authors = ["Tam Nguyen "] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 45d0ca1..76cc5f5 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -3,5 +3,5 @@ # a different build of the same code. Held to the version in # tamnd/zu's toolchains.toml. [toolchain] -channel = "1.97.1" +channel = "1.98.0" components = ["rustfmt", "clippy"]