45 lines
931 B
TOML
45 lines
931 B
TOML
[package]
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
name = "num-complex"
|
|
version = "0.4.6"
|
|
authors = ["The Rust Project Developers"]
|
|
exclude = [
|
|
"/ci/*",
|
|
"/.github/*",
|
|
]
|
|
description = "Complex numbers implementation for Rust"
|
|
homepage = "https://github.com/rust-num/num-complex"
|
|
documentation = "https://docs.rs/num-complex"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"mathematics",
|
|
"numerics",
|
|
]
|
|
categories = [
|
|
"algorithms",
|
|
"data-structures",
|
|
"science",
|
|
"no-std",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-num/num-complex"
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1"
|
|
optional = true
|
|
path = "../../../../libs/bytemuck"
|
|
[dependencies.num-traits]
|
|
version = "0.2.18"
|
|
features = ["i128"]
|
|
default-features = false
|
|
path = "../num-traits"
|
|
[features]
|
|
bytecheck = []
|
|
bytemuck = ["dep:bytemuck"]
|
|
default = ["std"]
|
|
libm = ["num-traits/libm"]
|
|
rand = []
|
|
rkyv = []
|
|
serde = []
|
|
std = ["num-traits/std"]
|