forked from ircam-ismm/node-web-audio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (19 loc) · 623 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (19 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
authors = ["Benjamin Matuszewski <benjamin.matuszewski@ircam.fr>"]
edition = "2021"
name = "node-web-audio-api-rs"
version = "0.3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = {version="2", features=["napi6"]}
napi-derive = "2"
web-audio-api = "0.23"
# web-audio-api = { path = "../web-audio-api-rs" }
[target.'cfg(all(any(windows, unix), target_arch = "x86_64", not(target_env = "musl")))'.dependencies]
mimalloc = {version = "0.1"}
[build-dependencies]
napi-build = "1"
[profile.release]
lto = true