diff options
| author | mo8it <mo8it@proton.me> | 2024-04-25 19:54:03 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-04-25 19:54:03 +0200 |
| commit | 8d45cdb09df7fbff117b91f500ccf82980732a47 (patch) | |
| tree | d7dcacc2cd54d5e424093233b96c8e141cda42e7 /rustlings-macros/src/lib.rs | |
| parent | a4e623ea94757d976ec38a5a771ea07e64e9105e (diff) | |
Fix missing info.toml in the macros crate
Diffstat (limited to 'rustlings-macros/src/lib.rs')
| -rw-r--r-- | rustlings-macros/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rustlings-macros/src/lib.rs b/rustlings-macros/src/lib.rs index 0bf3dbd..fc2bcf1 100644 --- a/rustlings-macros/src/lib.rs +++ b/rustlings-macros/src/lib.rs @@ -15,7 +15,7 @@ struct InfoFile { #[proc_macro] pub fn include_files(_: TokenStream) -> TokenStream { - let exercises = toml_edit::de::from_str::<InfoFile>(include_str!("../../info.toml")) + let exercises = toml_edit::de::from_str::<InfoFile>(include_str!("../info.toml")) .expect("Failed to parse `info.toml`") .exercises; |
