Skip to content
Snippets Groups Projects
Cargo.toml 801 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]
fastrand = "1.7"
anyhow = "1"
log = "0.4"
thiserror = "1"
serde = "1"
serde_json = "1"
iyes_loopless = "0.7"
Louis's avatar
Louis committed

musicbox = { git = "https://lab.lcr.gr/microhacks/micro-bevy-musicbox.git", rev = "5ab4120a983e54ef0786ddca43b92a70605efd49"}
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]
version = "0.8"
Louis's avatar
Louis committed
default-features = false
features = [
    "render",
    "bevy_winit",
    "png",
    "hdr",
    "x11",
]