diff options
Diffstat (limited to 'vendor/pest/src/stack.rs')
-rw-r--r-- | vendor/pest/src/stack.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/pest/src/stack.rs b/vendor/pest/src/stack.rs index dede80f1e..05ac11f67 100644 --- a/vendor/pest/src/stack.rs +++ b/vendor/pest/src/stack.rs @@ -7,7 +7,9 @@ // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. -use std::ops::{Index, Range}; +use alloc::vec; +use alloc::vec::Vec; +use core::ops::{Index, Range}; /// Implementation of a `Stack` which maintains an log of `StackOp`s in order to rewind the stack /// to a previous state. |