1 | [package]
|
2 | name = "integer-sqrt"
|
3 | description = "" "
|
4 | An implementation of integer square root algorithm for primitive rust types" ""
|
5 | version = "0.1.5"
|
6 | authors = ["Richard Dodd <richard.o.dodd@gmail.com>" , "Joseph Richey" , "Sergei Shulepov" ]
|
7 | include = ["src/**/*.rs" , "Cargo.toml" ]
|
8 | repository = "https://github.com/derekdreery/integer-sqrt-rs"
|
9 | readme = "README.md"
|
10 | keywords = ["integer" , "square" , "root" , "isqrt" , "sqrt" ]
|
11 | categories = ["algorithms" , "no-std" ]
|
12 | license = "Apache-2.0/MIT"
|
13 |
|
14 | [dependencies]
|
15 | num-traits = { version = "0.2" , default-features = false }
|
16 | |