Skip to content

Commit

Permalink
chore: Bump minimal Rust version to 1.79.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GrayJack committed Nov 18, 2024
1 parent 37faf19 commit 5adffb4
Show file tree
Hide file tree
Showing 4 changed files with 577 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ["1.70.0", "stable", "nightly"]
toolchain: ["1.79.0", "stable", "nightly"]
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["bit", "bitmask", "bitflags", "flags"]
categories = ["no-std"]
repository = "https://github.com/GrayJack/bitflag-attr"
homepage = "https://github.com/GrayJack/bitflag-attr"
rust-version = "1.70.0"
rust-version = "1.79.0"
exclude = ["/tests", "/.github"]

[lib]
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ use proc_macro::{Span, TokenStream};
use quote::quote;
use syn::{parse::Parse, punctuated::Punctuated, Error, Ident, ItemEnum, Result, Token};

mod testing_gen;

/// An attribute macro that transforms an C-like enum into a bitflag struct implementing an type API
/// similar to the `bitflags` crate, and implementing traits as listed below.
///
Expand Down
Loading

0 comments on commit 5adffb4

Please sign in to comment.