Merge pull request #13 from xlc/patch-1

Allow to disable std feature
This commit is contained in:
Richard Dodd (dodj) 2020-09-09 10:43:19 +01:00 committed by GitHub
commit 282d0d4e26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
name = "integer-sqrt" name = "integer-sqrt"
description = """ description = """
An implementation of integer square root algorithm for primitive rust types""" An implementation of integer square root algorithm for primitive rust types"""
version = "0.1.4" version = "0.1.5"
authors = ["Richard Dodd <richard.o.dodd@gmail.com>", "Joseph Richey", "Sergei Shulepov"] authors = ["Richard Dodd <richard.o.dodd@gmail.com>", "Joseph Richey", "Sergei Shulepov"]
include = ["src/**/*.rs", "Cargo.toml"] include = ["src/**/*.rs", "Cargo.toml"]
repository = "https://github.com/derekdreery/integer-sqrt-rs" repository = "https://github.com/derekdreery/integer-sqrt-rs"
@ -12,4 +12,4 @@ categories = ["algorithms", "no-std"]
license = "Apache-2.0/MIT" license = "Apache-2.0/MIT"
[dependencies] [dependencies]
num-traits = "0.2" num-traits = { version = "0.2", default-features = false }