From dd5b107c56c5df0d4d7bda0aab2bfac3cb23ce1d Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Tue, 10 Apr 2018 10:42:35 +0200 Subject: [PATCH] =?UTF-8?q?Added=20mention=20of=20`i128`=20feature=20to=20?= =?UTF-8?q?=E2=80=98README.md=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9702795..3aab842 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ extern crate num_traits; ## Features This crate can be used without the standard library (`#![no_std]`) by disabling -the default `std` feature. Use this in `Cargo.toml`: +the default `std` feature. Use this in `Cargo.toml`: ```toml [dependencies.num-traits] @@ -36,6 +36,8 @@ default-features = false The `Float` and `Real` traits are only available when `std` is enabled. The `FloatCore` trait is always available. +Implementations for `i128` and `u128` are only available when `i128` is enabled. + ## Releases Release notes are available in [RELEASES.md](RELEASES.md).