Skip to content

Commit 9ac00ce

Browse files
committed
chore: upgrade toolchain to 1.89.0
1 parent 386eaa3 commit 9ac00ce

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install rust
1414
uses: dtolnay/rust-toolchain@stable
1515
with:
16-
toolchain: 1.85.0
16+
toolchain: 1.89.0
1717
components: rustfmt
1818
override: true
1919
- name: Check formatting
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install rust
3232
uses: dtolnay/rust-toolchain@stable
3333
with:
34-
toolchain: 1.85.0
34+
toolchain: 1.89.0
3535
components: clippy
3636
override: true
3737
- run: sudo apt update && sudo apt install -y libclang-dev
@@ -93,7 +93,7 @@ jobs:
9393
- name: Install rust
9494
uses: dtolnay/rust-toolchain@stable
9595
with:
96-
toolchain: 1.85.0
96+
toolchain: 1.89.0
9797
target: ${{ matrix.target }}
9898
profile: minimal
9999
override: true

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = [
1414
"*.md",
1515
"benches",
1616
]
17-
rust-version = "1.85.0"
17+
rust-version = "1.89.0"
1818

1919
[features]
2020
default = ["snappy", "lz4", "zstd", "zlib", "bzip2"]

librocksdb-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::fs;
66
use std::path::PathBuf;
77
use std::process::Command;
88

9-
const RUST_TARGET: &str = "1.85.0";
9+
const RUST_TARGET: &str = "1.89.0";
1010

1111
fn get_flags_from_detect_platform_script() -> Option<Vec<String>> {
1212
if !cfg!(target_os = "windows") {

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "1.85.0"
2+
channel = "1.89.0"

0 commit comments

Comments
 (0)