-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 946 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
[package]
name = "lapis"
version = "0.1.0"
edition = "2021"
authors = ["amy universe <[email protected]>"]
repository = "https://github.com/tomara-x/lapis"
license = "MIT OR Apache-2.0"
[dependencies]
fundsp = {version = "0.20.0", git = "https://github.com/SamiPerttu/fundsp"} # update the label in main.rs
cpal = {version = "0.15.3", features = ["jack", "wasm-bindgen"]}
eframe = "0.30.0"
egui_extras = { version = "0.30.0", default-features = false, features = ["syntect"] }
syn = {version = "2.0.96", features = ["full", "extra-traits"]}
crossbeam-channel = "0.5.14"
log = "0.4.22"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.50"
web-sys = "0.3.77"
# smol amount of optimization for our stuff
[profile.dev]
opt-level = 1
# high optimizations and no debug symbols for deps
[profile.dev.package."*"]
opt-level = 3
debug = false
[profile.release]
panic = 'abort'
strip = true
codegen-units = 1
lto = "fat"