-
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.
chore: update changelog and manifests (#48)
* chore: bump members' manifest version * ci: exclude render from coverage test * chore: complete the workspace manifest with project info * chore: update bench crate manifest - remove wildcard version - propagate workspace info * chore: update core & render manifests * chore: update example crate manifest * chore: centralize inner deps in workspace manifest * chore: add deps to workspace manifest * chore: replace render deps with workspace's ref * chore: format workspace manifest * chore: finish replacing deps with workspace refs * chore: finish updating manifests * chore: update changelog
- Loading branch information
Showing
7 changed files
with
114 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
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,8 +1,51 @@ | ||
[workspace] | ||
|
||
members = ["honeycomb-benches", "honeycomb-core", "honeycomb-render", "honeycomb-examples"] | ||
|
||
resolver = "2" | ||
members = [ | ||
"honeycomb-benches", | ||
"honeycomb-core", | ||
"honeycomb-render", | ||
"honeycomb-examples" | ||
] | ||
|
||
[workspace.package] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
version = "0.2.0" | ||
homepage = "https://lihpc-computational-geometry.github.io/honeycomb/" | ||
repository = "https://github.com/LIHPC-Computational-Geometry/honeycomb" | ||
readme = "README.md" | ||
description = "Combinatorial map implementation for meshing applications" | ||
categories = ["data-structures", "mathematics", "science"] | ||
keywords = ["mesh", "meshing"] | ||
authors = ["Isaie Muron <[email protected]>", "Cedric Chevalier <[email protected]>"] | ||
|
||
[workspace.dependencies] | ||
# members | ||
honeycomb-benches = { version = "0.2.0", path = "./honeycomb-benches" } | ||
honeycomb-core = { version = "0.2.0", path = "./honeycomb-core" } | ||
honeycomb-examples = { version = "0.2.0", path = "./honeycomb-examples" } | ||
honeycomb-render = { version = "0.2.0", path = "./honeycomb-render" } | ||
|
||
# common | ||
cfg-if = "1" | ||
|
||
# core | ||
num = "0.4.2" | ||
|
||
# benchmarks | ||
criterion = "0.5.1" | ||
iai-callgrind = "0.10.2" | ||
rand = "0.8.5" | ||
|
||
# render | ||
bytemuck = "1.15.0" | ||
cgmath = "0.18.0" | ||
env_logger = "0.11.3" | ||
pollster = "0.3.0" | ||
smaa = "0.13.0" | ||
wgpu = "0.19.4" | ||
winit = "0.29.15" | ||
|
||
[profile.bench] | ||
debug = 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
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,12 +1,21 @@ | ||
[package] | ||
name = "honeycomb-core" | ||
version = "0.1.3" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
version.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
readme.workspace = true | ||
description = "Core structure implementation for combinatorial maps" | ||
categories.workspace = true | ||
keywords.workspace = true | ||
authors.workspace = true | ||
publish = true | ||
|
||
[features] | ||
utils = [] | ||
single_precision = [] | ||
|
||
[dependencies] | ||
cfg-if = "1" | ||
num = "0.4" | ||
cfg-if.workspace = true | ||
num.workspace = 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
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,26 +1,35 @@ | ||
[package] | ||
name = "honeycomb-render" | ||
version = "0.1.3" | ||
edition = "2021" | ||
edition.workspace = true | ||
license.workspace = true | ||
version.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
readme.workspace = true | ||
description = "Visualization tool for combinatorial maps" | ||
categories.workspace = true | ||
keywords.workspace = true | ||
authors.workspace = true | ||
publish = true | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
cfg-if = "1" | ||
wgpu = "0.19" | ||
winit = "0.29" | ||
env_logger = "0.11" | ||
pollster = "0.3" | ||
cgmath = "0.18" | ||
bytemuck = { version = "1.14", features = ["derive"] } | ||
honeycomb-core = { path = "../honeycomb-core" } | ||
smaa = "0.13" | ||
bytemuck = { workspace = true, features = ["derive"] } | ||
cfg-if.workspace = true | ||
cgmath.workspace = true | ||
env_logger.workspace = true | ||
honeycomb-core.workspace = true | ||
pollster.workspace = true | ||
smaa.workspace = true | ||
wgpu.workspace = true | ||
winit.workspace = true | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
console_error_panic_hook = "0.1.6" | ||
console_log = "1.0" | ||
wgpu = { version = "0.19", features = ["webgl"] } | ||
wasm-bindgen = "0.2" | ||
wasm-bindgen-futures = "0.4" | ||
web-sys = { version = "0.3", features = ["Document", "Window", "Element"] } | ||
wgpu = { workspace = true, features = ["webgl"] } |