Skip to content

Commit

Permalink
increase MSRV to 1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
noxware committed Dec 6, 2024
1 parent fa1180b commit 447ef92
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ concurrency:
on:
push:
branches:
- 'main'
- 'dev'
- "main"
- "dev"
paths-ignore:
- "**/*.md"
pull_request:
branches:
- 'main'
- 'dev'
- "main"
- "dev"
paths-ignore:
- "**/*.md"

Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
rust: [1.79]
rust: [1.80]
env:
LD_LIBRARY_PATH: ~\.wasmedge\lib

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
strategy:
matrix:
os: [macos-14, macos-13]
rust: [1.79]
rust: [1.80]

steps:
- name: Checkout sources
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
rust: [1.79]
rust: [1.80]
env:
WASMEDGE_DIR: ${{ github.workspace }}\WasmEdge-0.14.0-Windows
steps:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Build
run: |
cargo build
- name: Build before-packaging-command
run: |
cargo build --manifest-path packaging/before-packaging-command/Cargo.toml
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
rust: [1.79]
rust: [1.80]
env:
LD_LIBRARY_PATH: ~\.wasmedge\lib

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
strategy:
matrix:
os: [macos-14, macos-13]
rust: [1.79]
rust: [1.80]

steps:
- name: Checkout sources
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
if: ${{ github.event.inputs.build_windows == 'true' }}
strategy:
matrix:
rust: [1.79]
rust: [1.80]
env:
WASMEDGE_DIR: ${{ github.workspace }}\WasmEdge-0.14.0-Windows
steps:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ members = [
"moly-protocol",
"moly-backend",
"moly-fake-backend",
"moly-mofa"
"moly-mofa",
]
exclude = ["packaging/before-packaging-command"]

[package]
name = "moly"
version = "0.1.0"
edition = "2021"
rust-version = "1.79" ## required by cargo-packager
rust-version = "1.80"
description = "Desktop app for downloading and chatting with AI LLMs"

## Rename the binary to `_moly_app` to avoid naming conflicts
Expand All @@ -28,7 +28,7 @@ path = "src/main.rs"
moly-protocol = { path = "moly-protocol" }
moly-backend = { path = "moly-backend" }
moly-fake-backend = { path = "moly-fake-backend" }
moly-mofa = { path = "moly-mofa"}
moly-mofa = { path = "moly-mofa" }

makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "rik" }
makepad-code-editor = { git = "https://github.com/makepad/makepad", branch = "rik" }
Expand Down
2 changes: 1 addition & 1 deletion packaging/before-packaging-command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "before-packaging-command"
version = "0.1.0"
edition = "2021"
rust-version = "1.79" ## required by cargo-packager
rust-version = "1.80"
description = "A small Rust program that is run by cargo-packager's 'before packaging' commands."

[dependencies]
Expand Down

0 comments on commit 447ef92

Please sign in to comment.