File: Cargo.toml.orig

package info (click to toggle)
rust-float-cmp 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: makefile: 4
file content (26 lines) | stat: -rw-r--r-- 627 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
[package]
name = "float-cmp"
version = "0.9.0"
authors = ["Mike Dilger <mike@mikedilger.com>"]
description = "Floating point approximate comparison traits"
repository = "https://github.com/mikedilger/float-cmp"
documentation = "https://docs.rs/float-cmp"
readme = "README.md"
keywords = [ "float", "comparison", "fuzzy", "approximate", "no_std" ]
license = "MIT"
edition = "2018"

[lib]
name = "float_cmp"
path = "src/lib.rs"
test = true
doctest = true
doc = true

[features]
default = [ "ratio" ]
ratio = [ "num-traits" ]
std = [ ]

[dependencies]
num-traits = { version = "0.2.1", default-features = false, optional = true }