Closes #6, #7, #8, #9, #10 Refs #2, #122 Vendored bevy_render, bevy_core_pipeline, and bevy_pbr from Bevy v0.17.2 (commit 566358363126dd69f6e457e47f306c68f8041d2a) into libmarathon. - ~51K LOC vendored to crates/libmarathon/src/render/ - Merged bevy_render_macros into crates/macros/ - Fixed 773→0 compilation errors - Updated dependencies (encase 0.10→0.11, added 4 new deps) - Removed bevy_render/pbr/core_pipeline from app Cargo features All builds passing, macOS smoke test successful. Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["desktop"]
|
|
desktop = [] # macOS only
|
|
ios = []
|
|
headless = []
|
|
|
|
[dependencies]
|
|
libmarathon = { path = "../libmarathon" }
|
|
bevy = { version = "0.17", default-features = false, features = [
|
|
# bevy_render, bevy_core_pipeline, bevy_pbr are now vendored in libmarathon
|
|
"bevy_ui",
|
|
"bevy_text",
|
|
"png",
|
|
] }
|
|
egui = { version = "0.33", default-features = false, features = ["bytemuck", "default_fonts"] }
|
|
glam = "0.29"
|
|
winit = "0.30"
|
|
raw-window-handle = "0.6"
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
anyhow = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
rand = "0.8"
|
|
iroh = { version = "0.95", features = ["discovery-local-network"] }
|
|
iroh-gossip = "0.95"
|
|
futures-lite = "2.0"
|
|
rkyv = { workspace = true }
|
|
bytes = "1.0"
|
|
crossbeam-channel = "0.5.15"
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
objc = "0.2"
|
|
raw-window-handle = "0.6"
|
|
tracing-oslog = "0.3"
|
|
|
|
[dev-dependencies]
|
|
iroh = { version = "0.95", features = ["discovery-local-network"] }
|
|
iroh-gossip = "0.95"
|
|
tempfile = "3"
|
|
futures-lite = "2.0"
|
|
rkyv = { workspace = true }
|
|
bytes = "1.0"
|
|
|
|
[lib]
|
|
name = "app"
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|