We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24d8faa + 5bb83c8 commit 121c26bCopy full SHA for 121c26b
.github/workflows/main.yml
@@ -30,3 +30,7 @@ jobs:
30
with:
31
command: test
32
args: --features "serde"
33
+ - uses: actions-rs/cargo@v1
34
+ with:
35
+ command: test
36
+ args: --no-default-features
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "unicode-bidi"
3
-version = "0.3.6"
+version = "0.3.7"
4
authors = ["The Servo Project Developers"]
5
license = "MIT / Apache-2.0"
6
description = "Implementation of the Unicode Bidirectional Algorithm"
src/lib.rs
@@ -66,7 +66,7 @@
66
67
#![no_std]
68
// We need to link to std to make doc tests work on older Rust versions
69
-#![cfg(feature = "std")]
+#[cfg(feature = "std")]
70
extern crate std;
71
#[macro_use]
72
extern crate alloc;
0 commit comments