diff --git a/Cargo.toml b/Cargo.toml index 4fa87892..f33b93a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building-blocks" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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 diff --git a/crates/building_blocks_core/Cargo.toml b/crates/building_blocks_core/Cargo.toml index 50432343..ea90a77b 100644 --- a/crates/building_blocks_core/Cargo.toml +++ b/crates/building_blocks_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_core" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] license = "MIT" diff --git a/crates/building_blocks_image/Cargo.toml b/crates/building_blocks_image/Cargo.toml index d8967c76..94fd1a25 100644 --- a/crates/building_blocks_image/Cargo.toml +++ b/crates/building_blocks_image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_image" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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" } diff --git a/crates/building_blocks_mesh/Cargo.toml b/crates/building_blocks_mesh/Cargo.toml index 960f919f..1251ca8c 100644 --- a/crates/building_blocks_mesh/Cargo.toml +++ b/crates/building_blocks_mesh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_mesh" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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" diff --git a/crates/building_blocks_partition/Cargo.toml b/crates/building_blocks_partition/Cargo.toml index 02912070..dfd2a7be 100644 --- a/crates/building_blocks_partition/Cargo.toml +++ b/crates/building_blocks_partition/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_partition" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan Fairbanks "] 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" diff --git a/crates/building_blocks_procgen/Cargo.toml b/crates/building_blocks_procgen/Cargo.toml index 58abd96b..2f9f398e 100644 --- a/crates/building_blocks_procgen/Cargo.toml +++ b/crates/building_blocks_procgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_procgen" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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" } diff --git a/crates/building_blocks_search/Cargo.toml b/crates/building_blocks_search/Cargo.toml index b3dca644..2eeb89e4 100644 --- a/crates/building_blocks_search/Cargo.toml +++ b/crates/building_blocks_search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_search" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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" diff --git a/crates/building_blocks_storage/Cargo.toml b/crates/building_blocks_storage/Cargo.toml index 5b69e494..f30c96e4 100644 --- a/crates/building_blocks_storage/Cargo.toml +++ b/crates/building_blocks_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_storage" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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"] } diff --git a/crates/building_blocks_vox/Cargo.toml b/crates/building_blocks_vox/Cargo.toml index d0d36685..40dea55e 100644 --- a/crates/building_blocks_vox/Cargo.toml +++ b/crates/building_blocks_vox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "building_blocks_vox" -version = "0.1.0" +version = "0.2.0" edition = "2018" authors = ["Duncan "] 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" }