-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
69 lines (58 loc) · 1.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "quartz"
version = "0.8.0"
edition = "2021"
authors = ["amy universe <[email protected]>"]
repository = "https://github.com/tomara-x/quartz"
license = "MIT OR Apache-2.0"
[features]
inspector = ["dep:bevy-inspector-egui"]
[dependencies.bevy]
version = "0.14.1"
default-features = false
features = [
"multi_threaded",
"bevy_asset",
"bevy_scene",
"bevy_state",
"bevy_winit",
"bevy_render",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"tonemapping_luts",
"default_font",
"png",
"x11",
#"webgl2",
]
[dependencies]
bevy_pancam = {version = "0.12.0"}
fundsp = {version = "0.18.2", default-features = false, features = ["std"]}
cpal = {version = "0.15.3", features = ["jack"]}
copypasta = "0.10.1"
serde = "1"
rosc = "0.10.1"
crossbeam-channel = "0.5"
# wasm stuff
#cpal = {version = "0.15.3", features = ["jack", "wasm-bindgen"]}
#wasm-bindgen = "0.2.92"
#web-sys = {version = "0.3.69", features = ["Clipboard"]}
# inspector
bevy-inspector-egui = {version = "0.25", default-features = false, features = ["bevy_render"], optional = true}
# 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"
[profile.wasm-release]
inherits = "release"
opt-level = "s"