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/std.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/std.rs')
| -rw-r--r-- | crates/parser/src/std.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/parser/src/std.rs b/crates/parser/src/std.rs new file mode 100644 index 0000000..67152be --- /dev/null +++ b/crates/parser/src/std.rs @@ -0,0 +1,5 @@ +#[cfg(feature = "std")] +extern crate std; + +#[cfg(feature = "std")] +pub use std::*; |
