-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (62 loc) · 1.66 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
70
71
72
73
74
[package]
name = "libretakt"
version = "0.1.0"
edition = "2021"
default-run = "client"
# Required to use library in the `examples` folder
[lib]
bench = false
[profile.dev]
opt-level = 3
overflow-checks = false
[profile.release]
lto = true
[workspace]
members = ["mverb", "common"]
[workspace.dependencies]
common = { path = "common" }
uuid = { version = "0.8", features = ["v4", "serde"] } # uuid's fit well in this context.
url = "2.3.1"
futures-channel = "0.3.25"
tokio = { version = "1.8.4", features = ["full"] }
futures-util = "0.3"
log = "0.4.17"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
env_logger = "0.11.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
mverb = {path = "mverb" }
common = { path = "common" }
url = {workspace = true}
futures-util = {workspace = true}
tokio = {workspace = true}
log = {workspace=true}
futures = "0.3.25"
egui = "0.27.0"
rodio = { version = "0.17", default-features = true }
serde_json = "1.0.86"
flume = "0.10.14"
serde_derive = "1.0.147"
tokio-tungstenite = "0.18.0"
num = "0.4"
num-derive = "0.4"
num-traits = "0.2"
strum = "0.26"
strum_macros = "0.26"
# For cargo-fuzz
arbitrary = { version = "1", features = ["derive"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
egui = "0.27.0"
eframe = { version = "0.27.0", default-features = false, features = [
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }
log = "0.4"
reqwasm = "0.5.0"
ewebsock = "0.5.0"
[[bin]]
bench = false
path = "src/main.rs"
name = "client"