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 98c3900 commit 91d157aCopy full SHA for 91d157a
.travis.yml
@@ -14,6 +14,14 @@ script:
14
- ./ci/test_full.sh
15
matrix:
16
include:
17
+ # try a target that doesn't have std at all
18
+ - name: "no_std"
19
+ rust: stable
20
+ env: TARGET=thumbv6m-none-eabi
21
+ before_script:
22
+ - rustup target add $TARGET
23
+ script:
24
+ - cargo build --verbose --target $TARGET --no-default-features --features i128
25
- name: "rustfmt"
26
rust: 1.31.0
27
before_script:
Cargo.toml
@@ -26,4 +26,4 @@ i128 = ["num-traits/i128"]
std = ["num-traits/std"]
28
[build-dependencies]
29
-autocfg = "0.1.2"
+autocfg = "0.1.3"
0 commit comments