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.
1 parent e7fc309 commit 0f4e2dfCopy full SHA for 0f4e2df
2 files changed
.travis.yml
@@ -12,6 +12,7 @@ os:
12
script:
13
- cargo build --release --all --verbose
14
- cargo test --release --all --verbose
15
+ - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; cargo build --no-default-features; fi
16
17
matrix:
18
allow_failures:
src/lib.rs
@@ -29,6 +29,8 @@ extern crate block_core;
29
extern crate sha3;
30
extern crate digest;
31
32
+#[cfg(feature = "std")]
33
+extern crate block;
34
#[cfg(feature = "std")]
35
extern crate ripemd160;
36
0 commit comments