diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 01:28:08 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 01:28:08 +0100 |
| commit | 1fb52089715631f4edb2abdc592547d0f5121161 (patch) | |
| tree | e21ed51e1cbc86c73a15f5ab21fa1eed41426e2a /crates/parser/src/lib.rs | |
| parent | 21f5e8f932b29623ce4108ce5f941f2e9fa056a4 (diff) | |
chore: ensure everything still runs on no_std
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/src/lib.rs')
| -rw-r--r-- | crates/parser/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index d91694b..3cc51d6 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -2,9 +2,8 @@ #![forbid(unsafe_code)] #![cfg_attr(not(feature = "std"), feature(error_in_core))] +mod std; extern crate alloc; -#[cfg(feature = "std")] -extern crate std; mod conversion; mod error; |
