-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from davids91/feature/gpu-cache
Resolves #45 - implementation of GPU cache
- Loading branch information
Showing
17 changed files
with
2,305 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
[package] | ||
name = "shocovox-rs" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["Dávid Tóth <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
||
[features] | ||
default = ["dot_vox_support"] | ||
default = ["bevy_wgpu","dot_vox_support"] | ||
raytracing = ["dep:image", "dep:show-image"] | ||
serialization = ["dep:serde"] | ||
dot_vox_support = ["dep:dot_vox", "dep:nalgebra"] | ||
bevy_wgpu = ["raytracing", "dep:bevy", "dep:iyes_perf_ui"] | ||
bevy_wgpu = ["raytracing", "dep:bevy", "dep:iyes_perf_ui", "dep:crossbeam", "dep:bimap"] | ||
|
||
[dependencies] | ||
num-traits = "0.2.19" | ||
serde = { version = "1.0.183", features = ["derive"], optional = true } | ||
bendy = { git = "https://github.com/davids91/bendy.git" , features = ["std", "serde"]} | ||
dot_vox = { version = "5.1.1", optional = true } | ||
nalgebra = { version = "0.33.0", optional = true } | ||
crossbeam = { version = "0.8.4", optional = true } | ||
bimap = { version = "0.6.3", optional = true } | ||
|
||
# for example cpu_render | ||
image = { version = "0.25.1", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.