diff options
| author | 2022-08-16 17:42:37 +0200 | |
|---|---|---|
| committer | 2022-08-16 17:42:37 +0200 | |
| commit | 9e157f453ae674a9f86601142fde91b85485883a (patch) | |
| tree | 9ffa787646f5026a2c7d28dc5b1b2246545ae000 /src/tokenizer.rs | |
| parent | fc0f0f9f15574b4f80bda8249c0763d5865cb8b2 (diff) | |
| download | markdown-rs-9e157f453ae674a9f86601142fde91b85485883a.tar.gz markdown-rs-9e157f453ae674a9f86601142fde91b85485883a.tar.bz2 markdown-rs-9e157f453ae674a9f86601142fde91b85485883a.zip  | |
Add `no_std + alloc`
Diffstat (limited to 'src/tokenizer.rs')
| -rw-r--r-- | src/tokenizer.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tokenizer.rs b/src/tokenizer.rs index 2edab03..1e99771 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -14,6 +14,7 @@ use crate::parser::ParseState;  use crate::resolve::{call as call_resolve, Name as ResolveName};  use crate::state::{call, State};  use crate::util::edit_map::EditMap; +use alloc::{boxed::Box, string::String, vec, vec::Vec};  /// Containers.  ///  | 
