[package]
edition = "2021"
name = "math-mumu"
version = "0.2.0-rc.4"
authors = ["Tom Fotheringham <tom@nu11.co.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Math functions plugin for the MuMu / Lava language"
homepage = "https://lava.nu11.uk"
readme = "README.md"
keywords = [
"math",
"plugin",
"mumu",
"lava",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/tofo/math-mumu"
resolver = "2"
[features]
default = []
host = []
web = []
[lib]
name = "mumumath"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[dependencies.bigdecimal]
version = "0.4"
[dependencies.mumu]
version = "0.9.0-rc.4"
default-features = false
package = "core-mumu"
[dependencies.rust_decimal]
version = "1.37"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.mumu]
version = "0.9.0-rc.4"
features = ["host"]
default-features = false
package = "core-mumu"
[target.'cfg(target_arch = "wasm32")'.dependencies.mumu]
version = "0.9.0-rc.4"
features = ["wasm"]
default-features = false
package = "core-mumu"