-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 965 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 965 Bytes
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
[workspace]
resolver = "2"
members = [
"manager-app",
"manager-fut",
"manager-wasm",
"soundcore-lib",
"test_data",
]
[workspace.package]
authors = ["Grigoris Mallios <gregmallios@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
[workspace.dependencies]
weak-table = { version = "0.3.2" }
typeshare = { version = "1" }
log = { version = "0.4" }
env_logger = { version = "0.11" }
thiserror = { version = "1" }
tokio = { version = "1" }
serde = { version = "1" }
serde_json = { version = "1.0" }
futures = { version = "0.3" }
wasm-bindgen-futures = { version = "0.4" }
js-sys = { version = "0.3" }
web-sys = { version = "0.3" }
console_error_panic_hook = { version = "0.1" }
serde-wasm-bindgen = { version = "0.6" }
uuid = { version = "1.6.1" }
console_log = { version = "1" }
soundcore-lib = { path = "./soundcore-lib", default-features = false }
manager-fut = { path = "./manager-fut" }
[profile.release]
lto = true
opt-level = "s"