mirror of
https://github.com/eliasstepanik/voxel-simulation.git
synced 2026-01-11 05:48:29 +00:00
20 lines
480 B
TOML
20 lines
480 B
TOML
[package]
|
|
name = "horror-game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Horror-Game"
|
|
repository = "https://github.com/eliasstepanik/horror-game"
|
|
license = "MIT OR Apache-2.0"
|
|
build = "build.rs"
|
|
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.15.1", features = ["jpeg", "trace_tracy", "trace_tracy_memory"] }
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.8"
|
|
big_space = "0.9.1"
|
|
noise = "0.9.0"
|
|
itertools = "0.13.0"
|
|
bitvec = "1.0.1"
|
|
smallvec = "1.14.0" |