summaryrefslogtreecommitdiff
path: root/rustlings-macros/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rustlings-macros/src/lib.rs')
-rw-r--r--rustlings-macros/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
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;