-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 565 Bytes
/
Cargo.toml
File metadata and controls
33 lines (26 loc) · 565 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
[workspace]
resolver = "2"
members = [
"ui",
"web",
"desktop",
"mobile",
"api",
]
[workspace.package]
authors = ["ReadyPlayerEmma <emma@readyplayeremma.com>"]
license = "MPL-2.0"
repository = "https://github.com/ReadyPlayerEmma/looplace"
[workspace.dependencies]
dioxus = { version = "0.6.3" }
# workspace
ui = { path = "ui", package = "looplace-ui" }
api = { path = "api", package = "looplace-api" }
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"