Skip to content

Commit

Permalink
Revert MSRV (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwshang authored Aug 4, 2023
1 parent e29d873 commit 0f674bd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
rust-version: 1.71.1
rust-version: 1.65.0

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
rust-version: 1.71.1
rust-version: 1.65.0
dfx-version: 0.14.1
wasmtime-version: 10.0.1

Expand Down
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ members = [
authors = ["DFINITY Stiftung <sdk@dfinity.org>"]
edition = "2021"
repository = "https://github.com/dfinity/cdk-rs"
rust-version = "1.71.1"
# MSRV
# Avoid updating this field unless we use new Rust features
# Sync rust-version in following CI files:
# .github/workflows/ci.yml
# .github/workflows/examples.yml
rust-version = "1.65.0"
license = "Apache-2.0"

[profile.canister-release]
Expand Down
6 changes: 2 additions & 4 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@ channel = "1.71.1"
targets = ["wasm32-unknown-unknown"]
components = ["rustfmt", "clippy"]

# Sync rust-version in following files
# Cargo.toml
# .github/workflows/ci.yml
# .github/workflows/examples.yml
# The version only influences the local develop environment.
# No need to sync with Cargo.toml and CI.

0 comments on commit 0f674bd

Please sign in to comment.