Skip to content

Commit

Permalink
Set MSRV to 1.81
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarumych committed Dec 20, 2024
1 parent ce50ba5 commit 12df816
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test MSRV

on:
pull_request:
types: [opened, reopened, edited]
push:
branches: [ "main" ]
paths:
- ".github/workflows/msrv.yml"
- "demo/**"
- "examples/**"
- "src/**"
- "Cargo.toml"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install MSRV
run: rustup install 1.81
- name: Test on MSRV
run: cargo +1.81 test
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
workspace = { members = ["demo"] }

[package]
name = "egui-snarl"
version = "0.6.0"
Expand All @@ -10,6 +11,7 @@ repository = "https://github.com/zakarumych/egui-snarl"
readme = "README.md"
keywords = ["egui", "node", "graph", "ui", "node-graph"]
categories = ["gui", "visualization"]
rust-version = "1.81"

[features]
serde = ["dep:serde", "egui/serde", "slab/serde"]
Expand Down

0 comments on commit 12df816

Please sign in to comment.