~starkingdoms/starkingdoms

ref: 6aca948465e18411e666e465693deb03c97f6fd6 starkingdoms/crates/ship_editor/Cargo.toml -rw-r--r-- 476 bytes
6aca9484ghostly_zsh start ship editor, added mouse navigation 6 days ago
                                                                                
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
[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"]