Update deps

This commit is contained in:
mo8it
2025-08-18 12:01:21 +02:00
parent f24861957a
commit a712e484d0
7 changed files with 214 additions and 149 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ proc-macro = true
[dependencies]
quote = "1.0"
serde.workspace = true
toml_edit.workspace = true
toml.workspace = true
[lints]
workspace = true
+1 -1
View File
@@ -16,7 +16,7 @@ struct InfoFile {
#[proc_macro]
pub fn include_files(_: TokenStream) -> TokenStream {
let info_file = include_str!("../info.toml");
let exercises = toml_edit::de::from_str::<InfoFile>(info_file)
let exercises = toml::de::from_str::<InfoFile>(info_file)
.expect("Failed to parse `info.toml`")
.exercises;