29 lines
445 B
TOML
29 lines
445 B
TOML
[package]
|
|
name = "rmath"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Walter Oggioni <oggioni.walter@gmail.com>"]
|
|
license = "MIT"
|
|
rust-version = "1.60"
|
|
|
|
[dependencies]
|
|
trait-group = "0.1.0"
|
|
sealed = "0.5"
|
|
num-traits = "0.2.17"
|
|
opimps = "0.2.2"
|
|
|
|
[dev-dependencies]
|
|
num-bigint = "0.4.4"
|
|
rand = "0.8.5"
|
|
|
|
[lib]
|
|
name = "rmath"
|
|
crate-type = ["lib"]
|
|
bench = false
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
debug-assertions = false
|
|
codegen-units = 1
|