From 6d3b55030f636ace8b393a1d5abcb797be5d6b22 Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Mon, 9 Apr 2018 11:11:21 +0200 Subject: [PATCH] =?UTF-8?q?Added=20=E2=80=98i128=E2=80=99=20feature=20and?= =?UTF-8?q?=20unit=20test=20invocation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 1 + ci/test_full.sh | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 57f81fa..c9cb6d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,3 +16,4 @@ readme = "README.md" [features] default = ["std"] std = [] +i128 = [] diff --git a/ci/test_full.sh b/ci/test_full.sh index c86c178..adfe4f2 100755 --- a/ci/test_full.sh +++ b/ci/test_full.sh @@ -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