-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
39 lines (34 loc) · 956 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "libymfm"
version = "0.18.0"
authors = ["Hiromasa Tanaka <[email protected]>"]
edition = "2021"
rust-version = "1.66"
build = "build.rs"
description = "WebAssembly build of the ymfm Yamaha FM sound cores library"
repository = "https://github.com/h1romas4/libymfm.wasm"
license = "BSD-3-Clause"
[lib]
# https://github.com/rust-lang/rust/pull/79997
# https://github.com/bazelbuild/rules_rust/issues/771
# https://github.com/rust-lang/rfcs/pull/3180/files
crate-type = ["bin"]
# crate-type = ["cdylib", "rlib"]
path = "src/rust/lib.rs"
[features]
default = ["basic"]
basic = ["console_error_panic_hook"]
bindgen = ["console_error_panic_hook"]
[dependencies]
flate2 = "1.0"
nom = "7"
serde = "1"
serde_json = "1"
serde_derive = "1"
array-macro = "2"
approx_eq = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
console_error_panic_hook = { version = "0.1", optional = true }
[profile.release]
opt-level = 3