Skip to content
Snippets Groups Projects
Cargo.toml 773 B
Newer Older
Louis's avatar
Louis committed
[package]
name = "game_core"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Louis's avatar
v2  
Louis committed
fastrand.workspace = true
anyhow.workspace = true
log.workspace = true
thiserror.workspace = true
serde.workspace = true
serde_json.workspace = true
iyes_loopless.workspace = true
Louis's avatar
Louis committed

Louis's avatar
v2  
Louis committed
micro_musicbox = "0.4.0"
remote_events = { git = "https://lab.lcr.gr/microhacks/micro-bevy-remote-events.git", rev = "be0c6b43a73e4c5e7ece20797e3d6f59340147b4"}
Louis's avatar
Louis committed

Louis's avatar
Louis committed
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3.58", features = ["Window"] }

Louis's avatar
Louis committed
[dependencies.bevy]
Louis's avatar
v2  
Louis committed
version = "0.8.1"
Louis's avatar
Louis committed
default-features = false
features = [
    "render",
    "bevy_winit",
    "png",
    "hdr",
    "x11",
]