Browse Source

Bump rust toolchain to use `stdsimd` feature on 1.72.

See: https://github.com/tkaitchuck/aHash/issues/195
Related to: https://github.com/dora-rs/dora/actions/runs/7465955428/job/20316250830
tags/v0.3.1-rc6
haixuanTao 2 years ago
parent
commit
ee780df145
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      examples/cmake-dataflow/DoraTargets.cmake
  2. +1
    -1
      rust-toolchain.toml

+ 1
- 1
examples/cmake-dataflow/DoraTargets.cmake View File

@@ -15,7 +15,7 @@ if(DORA_ROOT_DIR)
)
FetchContent_MakeAvailable(Corrosion)
list(PREPEND CMAKE_MODULE_PATH ${Corrosion_SOURCE_DIR}/cmake)
find_package(Rust 1.70 REQUIRED MODULE)
find_package(Rust 1.72 REQUIRED MODULE)
corrosion_import_crate(MANIFEST_PATH "${DORA_ROOT_DIR}/Cargo.toml"
CRATES
dora-node-api-c


+ 1
- 1
rust-toolchain.toml View File

@@ -1,3 +1,3 @@
[toolchain]
channel = "1.70"
channel = "1.72"
components = ["rustfmt", "clippy"]

Loading…
Cancel
Save