Added ‘i128’ feature and unit test invocation

This commit is contained in:
Vincent Esche 2018-04-09 11:11:21 +02:00
parent d1334bf903
commit 6d3b55030f
2 changed files with 5 additions and 0 deletions

View File

@ -16,3 +16,4 @@ readme = "README.md"
[features]
default = ["std"]
std = []
i128 = []

View File

@ -11,3 +11,7 @@ cargo test --verbose
# test `no_std`
cargo build --verbose --no-default-features
cargo test --verbose --no-default-features
# test `i128`
cargo build --verbose --features=i128
cargo test --verbose --features=i128