oxinum-complex 0.1.0

Arbitrary-precision complex numbers for OxiNum (CBig over DBig; Pure Rust, GMP/MPFR-free)
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.80"
name = "oxinum-complex"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arbitrary-precision complex numbers for OxiNum (CBig over DBig; Pure Rust, GMP/MPFR-free)"
readme = "README.md"
keywords = [
    "bignum",
    "complex",
    "arbitrary-precision",
    "cooljapan",
    "oxinum",
]
categories = [
    "mathematics",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxinum"

[features]
default = []
num-traits = ["dep:num-traits"]
serde = [
    "dep:serde",
    "dashu-float/serde",
    "oxinum-float/serde",
    "oxinum-core/serde",
]

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

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

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

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

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

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

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

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

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

[dependencies.dashu-base]
version = "0.4"

[dependencies.dashu-float]
version = "0.4"

[dependencies.num-traits]
version = "0.2"
optional = true
default-features = false

[dependencies.oxinum-core]
version = "0.1.0"

[dependencies.oxinum-float]
version = "0.1.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.8"
default-features = false

[dev-dependencies.proptest]
version = "1.11"

[dev-dependencies.serde_json]
version = "1.0"