From 869d94bb13e45a23b597d5c3761f0d75c28151a7 Mon Sep 17 00:00:00 2001 From: Omid Rad Date: Fri, 18 Oct 2024 11:05:57 +0200 Subject: [PATCH] update msrv to 1.63 --- .github/workflows/ci.yml | 3 +-- formula-wasm/Cargo.toml | 2 +- formula/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3e2075..798a079 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - { name: macOS, os: macos-latest, triple: x86_64-apple-darwin } - { name: Windows, os: windows-2022, triple: x86_64-pc-windows-msvc } version: - - 1.61.0 # MSRV + - 1.63.0 # MSRV - stable - nightly steps: @@ -43,7 +43,6 @@ jobs: uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: ${{ matrix.version }}-${{ matrix.target.triple }} - profile: minimal override: true - name: Run tests run: | diff --git a/formula-wasm/Cargo.toml b/formula-wasm/Cargo.toml index 9cbac64..e8f11fb 100644 --- a/formula-wasm/Cargo.toml +++ b/formula-wasm/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" documentation = "https://docs.rs/formula" repository = "https://github.com/omid/formula" edition = "2021" -rust-version = "1.61" +rust-version = "1.63" [lib] crate-type = ["cdylib"] diff --git a/formula/Cargo.toml b/formula/Cargo.toml index 42d9b3d..e812b8a 100644 --- a/formula/Cargo.toml +++ b/formula/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" documentation = "https://docs.rs/formula" repository = "https://github.com/omid/formula" edition = "2021" -rust-version = "1.61" +rust-version = "1.63" [dependencies] chrono = "0.4"