-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (41 loc) · 1.39 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "phantomsdrdsp"
version = "0.1.0"
authors = ["media"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
wasm-bindgen = "0.2.92"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = true }
# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
# compared to the default allocator's ~10K. It is slower than the default
# allocator, however.
wee_alloc = { version = "0.4.5", optional = true }
futuredsp = "0.0.6"
js-sys = "0.3.69"
symphonia = "0.5.4"
ringbuf = "0.3.3"
web-sys = { version = "0.3.69", features = ["console"] }
zstd = { version = "0.13.0", default-features = false, features = ["wasm", "thin"] }
serde = { version = "1.0.197", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
digital-filter = "0.1.1"
rubato = "0.15.0"
rustfft = "6.2.0"
[dev-dependencies]
wasm-bindgen-test = "0.3.42"
[profile.release]
# Tell `rustc` to optimize for small code size.
lto = true
opt-level = 's'
wasm-opt = ['-Os']
[build-dependencies]
cc = "1.0.90"
#CMAKE=$(pwd)/cmake.sh CFLAGS="-I$(pwd)/includes -nostdlib -Wl,--no-entry" wasm-pack build