[package]
edition = "2021"
name = "chiptunomatic"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic chiptune generator from binary input (WASM-compatible library)"
homepage = "https://github.com/Nauja/chiptunomatic"
documentation = "https://docs.rs/chiptunomatic"
readme = "README.md"
categories = ["no-std"]
license = "AGPL-3.0"
repository = "https://github.com/Nauja/chiptunomatic"
[features]
default = [
"std",
"wav",
]
js = [
"dep:getrandom",
"getrandom/js",
]
std = [
"rand/std",
"rand/std_rng",
]
wav = [
"dep:hound",
"std",
]
[lib]
name = "chiptunomatic"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies.dyn-clone]
version = "1.0.20"
[dependencies.getrandom]
version = "0.2"
optional = true
[dependencies.getset]
version = "0.1.6"
[dependencies.hound]
version = "3"
optional = true
[dependencies.md5]
version = "0.8.0"
[dependencies.rand]
version = "0.8"
default-features = false
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.anyhow]
version = "1.0.102"