-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathCargo.toml
55 lines (41 loc) · 1.35 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
[package]
name = "neothesia"
version = "0.0.8"
authors = ["Poly <[email protected]>"]
edition = "2018"
[features]
default = ["compile_shader","synth"]
compile_shader = []
record=[]
play_along=[]
synth=["cpal","fluidlite","fluidlite-lib"]
[dependencies]
zerocopy = "0.3.0"
futures = "0.3.9"
# winit = "0.24.0"
winit = { git = "https://github.com/PolyMeilex/winit.git" }
wgpu = "0.6.2"
wgpu_glyph = "0.10.0"
log = "0.4.11"
env_logger = "0.8.2"
nfd2 = "0.2.3"
lib_midi = {path="./lib_midi"}
midir = "0.7.0"
iced_native = "0.3.0"
iced_wgpu = { version = "0.3.0", features = ["image"] }
iced_graphics = "0.1.0"
cpal = { version = "0.13.1", optional = true }
fluidlite = {git= "https://github.com/PolyMeilex/fluidlite-rs.git", optional = true}
fluidlite-lib = {git= "https://github.com/PolyMeilex/fluidlite-rs.git", optional = true}
ron = "0.6.4"
serde = { version = "1.0.118", features = ["serde_derive"] }
# js-sys = { git = "https://github.com/rustwasm/wasm-bindgen" }
# web-sys = { git = "https://github.com/rustwasm/wasm-bindgen" }
# wasm-bindgen = { git = "https://github.com/rustwasm/wasm-bindgen" }
# wasm-bindgen-futures = { git = "https://github.com/rustwasm/wasm-bindgen" }
# console_error_panic_hook = "0.1.6"
# console_log = "0.2.0"
[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2.7"
[build-dependencies]
glsl-to-spirv = "0.1.7"