Skip to content
Snippets Groups Projects
Cargo.toml 593 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]
iyes_loopless = "0.6.1"
fastrand = "1.7.0"
anyhow = "1.0.58"
log = "0.4.17"
thiserror = "1.0.31"
serde = "1.0.139"
serde_json = "1.0.82"

micro_bevy_musicbox = { git = "https://lab.lcr.gr/microhacks/micro-bevy-musicbox.git", rev="a6c8ae0127de2a0f2fd20ce7189625471663cd4a"}

[dependencies.bevy]
version = "0.7"
default-features = false
features = [
    "render",
    "bevy_winit",
    "png",
    "hdr",
    "x11",
]