Skip to content

Commit

Permalink
Merge pull request #63 from madsmtm/fix-no_std
Browse files Browse the repository at this point in the history
Fix `no_std`
  • Loading branch information
Manishearth authored Oct 5, 2021
2 parents 24d8faa + 5bb83c8 commit 121c26b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ jobs:
with:
command: test
args: --features "serde"
- uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unicode-bidi"
version = "0.3.6"
version = "0.3.7"
authors = ["The Servo Project Developers"]
license = "MIT / Apache-2.0"
description = "Implementation of the Unicode Bidirectional Algorithm"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

#![no_std]
// We need to link to std to make doc tests work on older Rust versions
#![cfg(feature = "std")]
#[cfg(feature = "std")]
extern crate std;
#[macro_use]
extern crate alloc;
Expand Down

0 comments on commit 121c26b

Please sign in to comment.