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