Skip to content

Commit

Permalink
Set MSRV to 1.80.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarumych committed Dec 20, 2024
1 parent a7aed3c commit ddcce95
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install MSRV
run: rustup install 1.80
run: rustup install 1.80.1
- name: Test on MSRV
run: cargo +1.80 test
run: cargo +1.80.1 test
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.7.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zakarumych/egui-probe"
rust-version = "1.80.1"

[package]
name = "egui-probe"
Expand All @@ -13,6 +14,7 @@ license.workspace = true
description = "Trait and derive macro for exposing value editing in egui"
documentation = "https://docs.rs/egui-probe"
repository.workspace = true
rust-version.workspace = true

[features]
derive = ["dep:egui-probe-proc"]
Expand Down
1 change: 1 addition & 0 deletions proc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ license.workspace = true
description = "Derive macro for egui-probe crate"
documentation = "https://docs.rs/egui-probe-proc"
repository.workspace = true
rust-version.workspace = true

[lib]
proc-macro = true
Expand Down

0 comments on commit ddcce95

Please sign in to comment.