nandi/jolt-nativepublic Fork 0
dce285fb5a5ec1f331b8afa7b2bdc4ed5e1bbd46
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 · 34 lines · 933 BTOML Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1[package]
2name = "wasm-beep"
3description = "cpal beep example for WebAssembly"
4version = "0.1.0"
5edition = "2021"
6rust-version = "1.85"
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"] }
18
19# `gloo` is a utility crate which improves ergonomics over direct `web-sys` usage.
20gloo = "0.11"
21
22# The `wasm-bindgen` crate provides the bare minimum functionality needed
23# to interact with JavaScript.
24wasm-bindgen = "0.2"
25
26# The `console_error_panic_hook` crate provides better debugging of panics by
27# logging them with `console.error`.
28console_error_panic_hook = "0.1"
29
30# The `web-sys` crate allows you to interact with the various browser APIs,
31# like the DOM.
32[dependencies.web-sys]
33version = "0.3"
34features = ["console", "MouseEvent"]