eunomia 0.8.0

Atlas datatype law: the Single Source of Truth for numeric/scalar datatype vocabulary (scalars, complex, packed formats, conversions)
Documentation
# 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.95"
name = "eunomia"
version = "0.8.0"
authors = ["Ryan Clanton <ryanclanton@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atlas datatype law: the Single Source of Truth for numeric/scalar datatype vocabulary (scalars, complex, packed formats, conversions)"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/ryancinsight/eunomia"

[features]
default = ["std"]
numpy = [
    "dep:numpy",
    "dep:pyo3",
    "std",
]
rkyv = [
    "dep:rkyv",
    "rkyv/pointer_width_32",
    "rkyv/alloc",
    "rkyv/bytecheck",
]
serde = ["dep:serde"]
std = []

[lib]
name = "eunomia"
path = "src/lib.rs"

[[example]]
name = "book_choosing_precision"
path = "examples/book_choosing_precision.rs"

[[example]]
name = "book_complex_arithmetic"
path = "examples/book_complex_arithmetic.rs"

[[example]]
name = "book_rounding_behaviour"
path = "examples/book_rounding_behaviour.rs"

[[test]]
name = "cast"
path = "tests/cast.rs"

[[test]]
name = "complex_provider_contract"
path = "tests/complex_provider_contract.rs"

[[test]]
name = "float_element"
path = "tests/float_element.rs"

[[test]]
name = "float_special"
path = "tests/float_special.rs"

[[test]]
name = "integer_element"
path = "tests/integer_element.rs"

[[test]]
name = "layout"
path = "tests/layout.rs"

[[test]]
name = "native_f16_storage"
path = "tests/native_f16_storage.rs"

[[test]]
name = "reduced_precision_convert"
path = "tests/reduced_precision_convert.rs"

[[test]]
name = "subbyte_convert"
path = "tests/subbyte_convert.rs"

[[bench]]
name = "conversions"
path = "benches/conversions.rs"
harness = false

[dependencies.bytemuck]
version = "1.14"
features = ["derive"]

[dependencies.libm]
version = "0.2.8"
default-features = false

[dependencies.numpy]
version = "0.29"
optional = true

[dependencies.pyo3]
version = "0.29"
optional = true

[dependencies.rkyv]
version = "0.8"
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.half]
version = "2.3"
default-features = false