integer-sqrt-rs/Cargo.toml

16 lines
486 B
TOML
Raw Normal View History

2017-10-23 08:14:24 -04:00
[package]
name = "integer-sqrt"
description = """
An implementation of integer square root algorithm for primitive rust types"""
2020-01-24 07:25:14 -05:00
version = "0.1.3"
2017-10-23 08:14:24 -04:00
authors = ["Richard Dodd <richard.dodd@itp-group.co.uk>"]
include = ["src/**/*.rs", "Cargo.toml"]
repository = "https://github.com/derekdreery/integer-sqrt-rs"
readme = "README.md"
keywords = ["integer", "square", "root", "isqrt", "sqrt"]
categories = ["algorithms", "no-std"]
license = "Apache-2.0/MIT"
[dependencies]
num-traits = "0.2"