integer-sqrt-rs/Cargo.toml

17 lines
542 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"""
2022-03-01 18:30:30 -05:00
version = "0.2.0"
2020-09-08 09:01:26 -04:00
authors = ["Richard Dodd <richard.o.dodd@gmail.com>", "Joseph Richey", "Sergei Shulepov"]
2017-10-23 08:14:24 -04:00
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"
2022-03-01 18:30:30 -05:00
edition = "2021"
2017-10-23 08:14:24 -04:00
[dependencies]
2022-03-01 18:30:30 -05:00
static_assertions = "1.1"