[package]
name = "ship_editor"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = { workspace = true }
getrandom = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
ctrlc = { workspace = true, optional = true }
[features]
native_dev = [
"bevy/file_watcher",
"bevy/hotpatching",
"bevy/dynamic_linking",
"native",
]
native = [
"bevy/x11",
"bevy/wayland",
"dep:ctrlc"
]
wasm = ["getrandom/wasm_js", "bevy/webgl2"]