2025-12-11 22:10:06 +00:00
|
|
|
[package]
|
|
|
|
|
name = "app"
|
|
|
|
|
version = "0.1.0"
|
2026-02-06 20:10:51 +00:00
|
|
|
edition.workspace = true
|
2025-12-11 22:10:06 +00:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["desktop"]
|
|
|
|
|
desktop = [] # macOS only
|
|
|
|
|
ios = []
|
|
|
|
|
headless = []
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-13 22:22:05 +00:00
|
|
|
libmarathon = { path = "../libmarathon" }
|
2026-02-06 20:33:03 +00:00
|
|
|
libmarathon-macros = { path = "../macros" }
|
2026-02-06 20:10:51 +00:00
|
|
|
inventory.workspace = true
|
|
|
|
|
rkyv.workspace = true
|
|
|
|
|
bevy = { version = "0.17.2", default-features = false, features = [
|
2025-12-23 23:50:49 +00:00
|
|
|
# bevy_render, bevy_core_pipeline, bevy_pbr are now vendored in libmarathon
|
2025-12-11 22:10:06 +00:00
|
|
|
"bevy_ui",
|
|
|
|
|
"bevy_text",
|
|
|
|
|
"png",
|
|
|
|
|
] }
|
2026-02-06 20:10:51 +00:00
|
|
|
egui.workspace = true
|
|
|
|
|
glam.workspace = true
|
|
|
|
|
winit.workspace = true
|
2025-12-13 22:22:05 +00:00
|
|
|
raw-window-handle = "0.6"
|
2026-02-06 20:10:51 +00:00
|
|
|
uuid.workspace = true
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
tokio.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
tracing-subscriber.workspace = true
|
|
|
|
|
tracing-appender.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
rand.workspace = true
|
|
|
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
|
|
|
|
iroh-gossip.workspace = true
|
|
|
|
|
futures-lite.workspace = true
|
|
|
|
|
bytes.workspace = true
|
|
|
|
|
crossbeam-channel.workspace = true
|
|
|
|
|
clap.workspace = true
|
2025-12-11 22:10:06 +00:00
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
|
|
|
objc = "0.2"
|
2025-12-13 22:22:05 +00:00
|
|
|
raw-window-handle = "0.6"
|
2026-02-06 20:10:51 +00:00
|
|
|
tracing-oslog.workspace = true
|
2025-12-11 22:10:06 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2026-02-06 20:10:51 +00:00
|
|
|
iroh = { workspace = true, features = ["discovery-local-network"] }
|
|
|
|
|
iroh-gossip.workspace = true
|
|
|
|
|
tempfile.workspace = true
|
|
|
|
|
futures-lite.workspace = true
|
|
|
|
|
rkyv.workspace = true
|
|
|
|
|
bytes.workspace = true
|
2025-12-11 22:10:06 +00:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "app"
|
|
|
|
|
crate-type = ["staticlib", "cdylib", "lib"]
|