From 9e157f453ae674a9f86601142fde91b85485883a Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 16 Aug 2022 17:42:37 +0200 Subject: Add `no_std + alloc` --- src/parser.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/parser.rs') diff --git a/src/parser.rs b/src/parser.rs index 8b13d45..404fd0f 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -5,6 +5,7 @@ use crate::state::{Name as StateName, State}; use crate::subtokenize::subtokenize; use crate::tokenizer::Tokenizer; use crate::{Constructs, Options}; +use alloc::{string::String, vec, vec::Vec}; /// Info needed, in all content types, when parsing markdown. /// -- cgit