chore: update dependencies

This commit is contained in:
Vukašin Vojinović 2026-01-28 00:49:48 +01:00 committed by Jeremy Soller
parent b71a7c9edf
commit cf19ac665f
5 changed files with 19 additions and 19 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "cosmic-config-derive"
version = "0.1.0"
edition = "2021"
version = "1.0.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]

View file

@ -106,7 +106,7 @@ fn impl_cosmic_config_entry_macro(ast: &syn::DeriveInput) -> TokenStream {
})
});
let gen = quote! {
let generate = quote! {
impl CosmicConfigEntry for #name {
const VERSION: u64 = #version;
@ -147,5 +147,5 @@ fn impl_cosmic_config_entry_macro(ast: &syn::DeriveInput) -> TokenStream {
}
};
gen.into()
generate.into()
}