diff options
Diffstat (limited to 'rustlings-macros')
| -rw-r--r-- | rustlings-macros/Cargo.toml | 2 | ||||
| -rw-r--r-- | rustlings-macros/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rustlings-macros/Cargo.toml b/rustlings-macros/Cargo.toml index 1bf6d1b..5df648b 100644 --- a/rustlings-macros/Cargo.toml +++ b/rustlings-macros/Cargo.toml @@ -18,7 +18,7 @@ proc-macro = true [dependencies] quote = "1.0" serde.workspace = true -toml_edit.workspace = true +toml.workspace = true [lints] workspace = true diff --git a/rustlings-macros/src/lib.rs b/rustlings-macros/src/lib.rs index 6c6067b..b20c6f1 100644 --- a/rustlings-macros/src/lib.rs +++ b/rustlings-macros/src/lib.rs @@ -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; |
