-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (34 loc) · 1.1 KB
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
[workspace]
members = [
"apps/crab2d-editor",
"apps/crab2d-runtime",
"crates/crab2d-assets",
"crates/crab2d-core",
"crates/crab2d-editor",
"crates/crab2d-platform",
"crates/crab2d-plugin-api",
"crates/crab2d-procgen",
"crates/crab2d-render",
"crates/crab2d-scene",
"tests/crab2d-integration",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
version = "0.1.0"
[workspace.dependencies]
crab2d-assets = { path = "crates/crab2d-assets" }
crab2d-core = { path = "crates/crab2d-core" }
crab2d-editor = { path = "crates/crab2d-editor" }
crab2d-platform = { path = "crates/crab2d-platform" }
crab2d-plugin-api = { path = "crates/crab2d-plugin-api" }
crab2d-procgen = { path = "crates/crab2d-procgen" }
crab2d-render = { path = "crates/crab2d-render" }
crab2d-scene = { path = "crates/crab2d-scene" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rhai = { version = "1", features = ["sync"] }
rodio = { version = "0.20", default-features = false, features = ["wav", "vorbis"] }
uuid = { version = "1", features = ["v4", "serde"] }
rand = "0.8"