-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (57 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
[package]
name = "bgawk"
version = "0.1.0"
edition = "2021"
authors = ["amy universe <[email protected]>"]
repository = "https://github.com/tomara-x/bgawk"
license = "MIT OR Apache-2.0"
[dependencies.bevy]
version = "0.15.1"
default-features = false
features = [
"multi_threaded",
"bevy_asset",
"bevy_winit",
"bevy_render",
"bevy_core_pipeline",
"bevy_sprite",
"tonemapping_luts",
"x11",
]
[dependencies.avian2d]
version = "0.2.0"
default-features = false
features = [
"2d",
"f32",
"parry-f32",
"debug-plugin",
"parallel",
"simd",
]
[dependencies]
bevy_pancam = "0.17.0"
bevy_egui = "0.32.0"
egui = "0.30.0"
egui_extras = { version = "0.30.0", default-features = false, features = ["syntect"] }
fundsp = {version = "0.20.0", git = "https://github.com/SamiPerttu/fundsp"}
cpal = {version = "0.15.3", features = ["jack"]}
syn = {version = "2.0.96", features = ["full", "extra-traits"]}
crossbeam-channel = "0.5.14"
clap = { version = "4.5.27", features = ["derive"] }
figment = { version = "0.10.19", features = ["toml"]}
xdg = "2.5.2"
serde = { version = "1.0.217", features = ["derive"] }
# 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
debug-assertions = false
[profile.release]
panic = 'abort'
strip = true
codegen-units = 1
lto = "fat"