array-mumu 0.1.9

Array tools plugin for the Mumu ecosystem
Documentation
[package]
name = "array-mumu"
version = "0.1.9"
edition = "2021"
description = "Array tools plugin for the Mumu ecosystem"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://lava.nu11.uk"
repository = "https://gitlab.com/tofo/mumu-array"
keywords = ["array", "plugin", "mumu"]
categories = ["data-structures"]
authors = ["Tom Fotheringham <tom@nu11.co.uk>"]

[lib]
name = "mumuarray"
crate-type = ["lib", "cdylib"]

[dependencies]
# Use the published core engine but expose it to this crate as `mumu`
mumu = { package = "core-mumu", version = "0.7.2", default-features = false }
indexmap = "2"
rand = "0.8"

# WASM-specific tweaks:
#  - enable core-mumu's lightweight "web" feature (no host-only deps)
#  - enable JS entropy for getrandom (used by rand)
[target.'cfg(target_arch = "wasm32")'.dependencies]
mumu = { package = "core-mumu", version = "0.7.2", default-features = false, features = ["web"] }
getrandom = { version = "0.2", features = ["js"] }