Skip to content

Commit fda2613

Browse files
committed
fix: resolve 54 compile errors across editor, runtime, and scene crates
1 parent 4c34bcd commit fda2613

34 files changed

Lines changed: 756 additions & 2255 deletions

Cargo.lock

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resolver = "2"
1515

1616
[workspace.package]
1717
edition = "2021"
18-
license = "MIT"
18+
license = "MIT OR Apache-2.0"
1919
version = "0.1.0"
2020

2121
[workspace.dependencies]
@@ -31,5 +31,4 @@ serde = { version = "1", features = ["derive"] }
3131
serde_json = "1"
3232
rhai = { version = "1", features = ["sync"] }
3333
rodio = { version = "0.20", default-features = false, features = ["wav", "vorbis"] }
34-
uuid = { version = "1", features = ["v4", "serde"] }
3534
rand = "0.8"

apps/crab2d-runtime/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ edition.workspace = true
44
license.workspace = true
55
version.workspace = true
66

7+
[features]
8+
default = []
9+
audio = ["crab2d-core/audio"]
10+
711
[dependencies]
812
crab2d-core.workspace = true
913
crab2d-platform.workspace = true
10-
crab2d-render.workspace = true
1114
crab2d-scene.workspace = true
1215
eframe = { version = "0.34", features = ["glow"] }
13-
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
14-
rand.workspace = true

0 commit comments

Comments
 (0)