Skip to content

Commit a42be09

Browse files
committed
feat: v1.9.0
1 parent a454e60 commit a42be09

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lombok-macros"
3-
version = "1.8.1"
4-
edition = "2021"
3+
version = "1.9.0"
4+
edition = "2024"
55
authors = ["ltpp-universe <root@ltpp.vip>"]
66
license = "MIT"
77
description = """A collection of procedural macros for Lombok-like functionality in Rust."""
@@ -17,7 +17,7 @@ exclude = [
1717

1818
[dependencies]
1919
proc-macro2 = "1.0.93"
20-
quote = "1.0.38"
20+
quote = "1.0.40"
2121
syn = "2.0.98"
2222

2323
[lib]

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ pub(crate) use generate::func::*;
1212
pub(crate) use parse::{constant::*, func::*};
1313
pub(crate) use proc_macro::TokenStream as OldTokenStream;
1414
pub(crate) use proc_macro2::{TokenStream as NewTokenStream, TokenTree as NewTokenTree};
15-
pub(crate) use quote::{format_ident, quote, ToTokens};
15+
pub(crate) use quote::{ToTokens, format_ident, quote};
1616
pub(crate) use std::collections::HashMap;
1717
pub(crate) use std::str::FromStr;
1818
pub(crate) use syn::{
19-
parse_macro_input, Data, DeriveInput, Field,
19+
Data, DeriveInput, Field,
2020
GenericParam::{self},
2121
Ident, Lifetime,
2222
Type::{self},
23-
TypeParam,
23+
TypeParam, parse_macro_input,
2424
};
2525
pub(crate) use visibility::r#type::*;
2626

0 commit comments

Comments
 (0)