forked from brendanzab/approx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "approx"
version = "0.5.1"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
license = "Apache-2.0"
description = "Approximate floating point equality comparisons and assertions."
documentation = "https://docs.rs/approx"
homepage = "https://github.com/brendanzab/approx"
repository = "https://github.com/brendanzab/approx"
readme = "README.md"
keywords = [
"approximate",
"assert",
"comparison",
"equality",
"float",
]
[package.metadata.docs.rs]
features = ["std", "num-complex"]
[lib]
name = "approx"
[features]
default = ["std"]
std = []
[dependencies]
num-traits = { version = "0.2.0", default_features = false }
num-complex = { version = "0.4.0", optional = true }