mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-28 13:11:22 +00:00
25 lines
419 B
TOML
25 lines
419 B
TOML
[package]
|
|
name = "webaudio"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../.." }
|
|
|
|
[dependencies.web-sys]
|
|
path = "../../crates/web-sys"
|
|
features = [
|
|
'AudioContext',
|
|
'AudioDestinationNode',
|
|
'AudioNode',
|
|
'AudioParam',
|
|
'AudioScheduledSourceNode',
|
|
'BaseAudioContext',
|
|
'GainNode',
|
|
'OscillatorNode',
|
|
'OscillatorType',
|
|
]
|