Elias Stepanik 2a24ae1ee6 Revert "Added the possibility for loading textures for voxels."
This reverts commit d131c4f67a13ef36a7ae92fa4e8327f47b6d3b26.
2025-06-14 21:21:01 +02:00

27 lines
740 B
TOML

[package]
name = "voxel-simulation"
version = "0.1.0"
edition = "2024"
description = "voxel-simulation"
repository = "https://github.com/eliasstepanik/voxel-simulation"
license = "MIT OR Apache-2.0"
build = "build.rs"
[dependencies]
bevy = { version = "0.16.1", features = ["jpeg", "trace_tracy", "trace_tracy_memory", "serialize"] }
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
big_space = { git = "https://github.com/aevyrie/big_space.git", rev = "5345af11d4ce138bacf5a9a3ab53d1c3b3b103c7" }
noise = "0.9.0"
itertools = "0.13.0"
bitvec = "1.0.1"
smallvec = "1.14.0"
once_cell = "1.21.3"
rayon = "1.10.0"
bincode = "1.3"
bevy_app_compute = "0.16"
bytemuck = { version = "1.14", features = ["derive"] }