[package]
edition = "2024"
rust-version = "1.88.0"
name = "approx_collections"
version = "4.1.0"
authors = ["Andrew Farkas"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Collections using approximate floating-point comparison"
readme = "README.md"
keywords = [
"math",
"equality",
"approximate",
"float",
"comparison",
]
categories = [
"data-structures",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/HactarCE/approx_collections/"
[features]
default = [
"rustc-hash",
"derive",
]
derive = ["dep:approx_collections_derive"]
[lib]
name = "approx_collections"
path = "src/lib.rs"
[[test]]
name = "derive_tests"
path = "tests/derive_tests.rs"
[dependencies.approx_collections_derive]
version = "1.1.0"
optional = true
[dependencies.rustc-hash]
version = "2.1.1"
optional = true
[dependencies.smallvec]
version = "1.13.2"
features = ["union"]
[dev-dependencies.proptest]
version = "1.7.0"
[dev-dependencies.proptest-macro]
version = "0.2.0"