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
0559a72
commit 5332120
Showing
9 changed files
with
30 additions
and
30 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.1.0" | ||
version = "0.2.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." | ||
|
@@ -25,16 +25,16 @@ members = ["crates/*"] | |
exclude = ["benches"] | ||
|
||
[dependencies] | ||
building_blocks_core = { path = "crates/building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "crates/building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "crates/building_blocks_storage", version = "0.2" } | ||
|
||
# Optional, feature-gated | ||
building_blocks_image = { path = "crates/building_blocks_image", version = "0.1", optional = true } | ||
building_blocks_mesh = { path = "crates/building_blocks_mesh", version = "0.1", optional = true } | ||
building_blocks_partition = { path = "crates/building_blocks_partition", version = "0.1", optional = true } | ||
building_blocks_procgen = { path = "crates/building_blocks_procgen", version = "0.1", optional = true } | ||
building_blocks_search = { path = "crates/building_blocks_search", version = "0.1", optional = true } | ||
building_blocks_vox = { path = "crates/building_blocks_vox", version = "0.1", optional = true } | ||
building_blocks_image = { path = "crates/building_blocks_image", version = "0.2", optional = true } | ||
building_blocks_mesh = { path = "crates/building_blocks_mesh", version = "0.2", optional = true } | ||
building_blocks_partition = { path = "crates/building_blocks_partition", version = "0.2", optional = true } | ||
building_blocks_procgen = { path = "crates/building_blocks_procgen", version = "0.2", optional = true } | ||
building_blocks_search = { path = "crates/building_blocks_search", version = "0.2", optional = true } | ||
building_blocks_vox = { path = "crates/building_blocks_vox", version = "0.2", optional = true } | ||
|
||
[dev-dependencies] | ||
bevy = "0.3" # for examples | ||
|
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.1.0" | ||
version = "0.2.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_image" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,5 +12,5 @@ description = "Functions for converting from/to building-blocks arrays to/from 2 | |
[dependencies] | ||
image = { version = "0.23" } | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } |
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.1.0" | ||
version = "0.2.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.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } | ||
|
||
fnv = "1.0" | ||
|
||
|
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_partition" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan Fairbanks <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -20,8 +20,8 @@ fnv = "1.0" | |
# Optional, feature-gated | ||
ncollide3d = { version = "0.26", optional = true } | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } | ||
|
||
[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_procgen" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -10,5 +10,5 @@ keywords = ["voxel"] | |
description = "Algorithms for procedural generation of voxel data." | ||
|
||
[dependencies] | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } |
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.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,8 +13,8 @@ description = "Search algorithms for voxel data." | |
indexmap = "1.5" | ||
itertools = "0.9" | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } | ||
|
||
[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.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -18,7 +18,7 @@ lz4 = "1.23" | |
num = "0.3" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
|
||
compressible-map = { version = "0.1", features = ["bincode_lz4"] } | ||
|
||
|
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_vox" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Duncan <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,5 +12,5 @@ description = "Functions for converting to/from building-blocks arrays from/to V | |
[dependencies] | ||
dot_vox = "4.1" | ||
|
||
building_blocks_core = { path = "../building_blocks_core", version = "0.1" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.1" } | ||
building_blocks_core = { path = "../building_blocks_core", version = "0.2" } | ||
building_blocks_storage = { path = "../building_blocks_storage", version = "0.2" } |