File: Cargo.toml.orig

package info (click to toggle)
rust-float-eq 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 304 kB
  • sloc: makefile: 2
file content (43 lines) | stat: -rw-r--r-- 1,340 bytes parent folder | download
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
34
35
36
37
38
39
40
41
42
43
[package]
name = "float_eq"
version = "1.0.1"
authors = ["jtempest"]
license = "MIT OR Apache-2.0"
description = "Compare IEEE floating point primitives, structs and collections for equality."
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"

[package.metadata.docs.rs]
all-features = true

[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "jtempest/float_eq-rs" }
# Turned off for now since coveralls has better support for testing multiple 
# feature sets, and thus is more representative.
# codecov = { repository = "jtempest/float_eq-rs" }
coveralls = { repository = "jtempest/float_eq-rs" }

[dev-dependencies]
trybuild = "1"

[dependencies.num-complex]
version = "0.4"
optional = true

[dependencies.float_eq_derive]
version = "=1.0.1"
optional = true
path = "../float_eq_derive"

[features]
default = ["std"]
std = []
num = ["num-complex"]
derive = ["float_eq_derive"]