nandi/jolt-nativepublic Fork 0
fa4ecdfed6a830e6099d5fab9be24ef72ea1923b
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Cargo.toml · 33 lines · 1009 BTOML Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1[package]
2name = "audioworklet-beep"
3description = "cpal beep example for WebAssembly on an AudioWorklet"
4version = "0.1.0"
5edition = "2021"
6authors = ["Ian Kettlewell <ian.kettlewell@gmail.com>"]
7
8[lib]
9crate-type = ["cdylib"]
10
11[profile.release]
12# This makes the compiled code faster and smaller, but it makes compiling slower,
13# so it's only enabled in release mode.
14lto = true
15
16[dependencies]
17cpal = { path = "../..", features = ["wasm-bindgen", "audioworklet"] }
18# `gloo` is a utility crate which improves ergonomics over direct `web-sys` usage.
19gloo = "0.11"
20
21# The `wasm-bindgen` crate provides the bare minimum functionality needed
22# to interact with JavaScript.
23wasm-bindgen = "0.2"
24
25# The `console_error_panic_hook` crate provides better debugging of panics by
26# logging them with `console.error`.
27console_error_panic_hook = "0.1"
28
29# The `web-sys` crate allows you to interact with the various browser APIs,
30# like the DOM.
31[dependencies.web-sys]
32version = "0.3"
33features = ["console", "MouseEvent"]