1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
[package]
name = "float_eq_derive"
version = "1.0.1"
authors = ["jtempest"]
license = "MIT OR Apache-2.0"
description = "Derive macro support for float_eq."
homepage = "https://jtempest.github.io/float_eq-rs/"
repository = "https://github.com/jtempest/float_eq-rs"
documentation = "https://jtempest.github.io/float_eq-rs/book/"
keywords = ["approximate", "assert", "comparison", "equality", "float"]
categories = ["algorithms", "development-tools::debugging", "no-std"]
readme = "crates-io.md"
include = ["Cargo.toml", "src/**/*.rs", "crates-io.md", "LICENSE-APACHE", "LICENSE-MIT"]
edition = "2018"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1"
quote = "1"
syn = "1"
|