140 lines
2.5 KiB
TOML
140 lines
2.5 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.63"
|
|
name = "ordered-float"
|
|
version = "5.0.0"
|
|
authors = [
|
|
"Jonathan Reem <jonathan.reem@gmail.com>",
|
|
"Matt Brubeck <mbrubeck@limpet.net>",
|
|
]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Wrappers for total ordering on floats"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"no_std",
|
|
"ord",
|
|
"f64",
|
|
"f32",
|
|
"sort",
|
|
]
|
|
categories = [
|
|
"science",
|
|
"rust-patterns",
|
|
"no-std",
|
|
]
|
|
license = "MIT"
|
|
repository = "https://github.com/reem/rust-ordered-float"
|
|
|
|
[lib]
|
|
name = "ordered_float"
|
|
path = "src/lib.rs"
|
|
|
|
[[test]]
|
|
name = "evil"
|
|
path = "tests/evil.rs"
|
|
|
|
[[test]]
|
|
name = "test"
|
|
path = "tests/test.rs"
|
|
|
|
[dependencies.arbitrary]
|
|
version = "1.0.0"
|
|
optional = true
|
|
|
|
[dependencies.borsh]
|
|
version = "1.2.0"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1.12.2"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.derive-visitor]
|
|
version = "0.4.0"
|
|
optional = true
|
|
|
|
[dependencies.num-cmp]
|
|
version = "0.1.0"
|
|
optional = true
|
|
|
|
[dependencies.num-traits]
|
|
version = "0.2.9"
|
|
default-features = false
|
|
|
|
[dependencies.proptest]
|
|
version = "1.0.0"
|
|
optional = true
|
|
|
|
[dependencies.rand]
|
|
version = "0.8.3"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.rkyv]
|
|
version = "0.7.41"
|
|
features = ["rend"]
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.schemars]
|
|
version = "0.8.8"
|
|
optional = true
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.speedy]
|
|
version = "0.8.3"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.serde_test]
|
|
version = "1.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
libm = ["num-traits/libm"]
|
|
randtest = [
|
|
"rand/std",
|
|
"rand/std_rng",
|
|
]
|
|
rkyv = ["rkyv_32"]
|
|
rkyv_16 = [
|
|
"dep:rkyv",
|
|
"rkyv?/size_16",
|
|
]
|
|
rkyv_32 = [
|
|
"dep:rkyv",
|
|
"rkyv?/size_32",
|
|
]
|
|
rkyv_64 = [
|
|
"dep:rkyv",
|
|
"rkyv?/size_64",
|
|
]
|
|
rkyv_ck = ["rkyv?/validation"]
|
|
serde = [
|
|
"dep:serde",
|
|
"rand?/serde1",
|
|
]
|
|
std = ["num-traits/std"]
|