25 lines
693 B
TOML
25 lines
693 B
TOML
[package]
|
|
edition = "2015"
|
|
name = "approx"
|
|
version = "0.5.1"
|
|
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
|
|
description = "Approximate floating point equality comparisons and assertions."
|
|
homepage = "https://github.com/brendanzab/approx"
|
|
documentation = "https://docs.rs/approx"
|
|
readme = "README.md"
|
|
keywords = ["approximate", "assert", "comparison", "equality", "float"]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/brendanzab/approx"
|
|
[lib]
|
|
name = "approx"
|
|
[dependencies.num-complex]
|
|
version = "0.4.0"
|
|
optional = true
|
|
path = "../num-complex"
|
|
[dependencies.num-traits]
|
|
version = "0.2.0"
|
|
default-features = false
|
|
path = "../num-traits"
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|