This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9595f95
commit 79788f5
Showing
6 changed files
with
26 additions
and
21 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,6 +1,6 @@ | ||
[package] | ||
name = "building-blocks" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
description = "Data types, collections, and algorithms for working with maps on 2D and 3D integer lattices. Commonly known as voxel data." | ||
|
@@ -55,12 +55,12 @@ lto = true | |
# TODO: use RFC #2906 to deduplicate dependency specs once it is merged | ||
|
||
[dependencies] | ||
building_blocks_core = { path = "crates/building_blocks_core", version = "0.5.0", default-features = false } | ||
building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.5.0", default-features = false } | ||
building_blocks_core = { path = "crates/building_blocks_core", version = "0.6.0", default-features = false } | ||
building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.6.0", default-features = false } | ||
|
||
# Optional, feature-gated | ||
building_blocks_mesh = { path = "crates/building_blocks_mesh", version = "0.5.0", default-features = false, optional = true } | ||
building_blocks_search = { path = "crates/building_blocks_search", version = "0.5.0", default-features = false, optional = true } | ||
building_blocks_mesh = { path = "crates/building_blocks_mesh", version = "0.6.0", default-features = false, optional = true } | ||
building_blocks_search = { path = "crates/building_blocks_search", version = "0.6.0", default-features = false, optional = true } | ||
|
||
[dev-dependencies] | ||
bevy = { git = "https://github.com/bevyengine/bevy", rev = "785aad92", default-features = false, features = ["bevy_wgpu", "bevy_winit", "render", "png", "x11"] } | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "building_blocks_core" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "building_blocks_mesh" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -10,8 +10,8 @@ keywords = ["voxel"] | |
description = "Fast meshing algorithms for voxel data structures." | ||
|
||
[dependencies] | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.5.0", default-features = false } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.5.0", default-features = false } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.6.0", default-features = false } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.6.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "building_blocks_search" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -23,8 +23,8 @@ pathfinding = "2.1" | |
nalgebra = { version = "0.25", optional = true } | ||
ncollide3d = { version = "0.28", optional = true } | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.5.0", default-features = false } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.5.0", default-features = false } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.6.0", default-features = false } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.6.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "building_blocks_storage" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -23,7 +23,7 @@ num = "0.3" | |
serde = { version = "1.0", features = ["derive"] } | ||
slab = "0.4" | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.5.0", default-features = false } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.6.0", default-features = false } | ||
|
||
# Optional, feature-gated. | ||
dot_vox = { version = "4.1", optional = true } | ||
|