-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
68 lines (59 loc) · 1.64 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
resolver = "2"
members = [
"benches",
"honeycomb",
"honeycomb-core",
"honeycomb-kernels",
"honeycomb-render",
"examples",
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
version = "0.7.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 = { version = "0.7.0", path = "./honeycomb" }
honeycomb-benches = { version = "0.7.0", path = "./benches" }
honeycomb-core = { version = "0.7.0", path = "./honeycomb-core" }
honeycomb-kernels = { version = "0.7.0", path = "./honeycomb-kernels" }
honeycomb-examples = { version = "0.7.0", path = "./examples" }
honeycomb-render = { version = "0.7.0", path = "./honeycomb-render" }
# common
cfg-if = "1"
itertools = "0.14.0"
rayon = "1.10.0"
rustversion = "1.0.18"
thiserror = "2.0.3"
# core
downcast-rs = "2.0.1"
loom = "0.7.2"
num-traits = "0.2.19"
stm = "0.4.0"
vtkio = { version = "0.7.0-rc1", default-features = false }
# benchmarks
criterion = "0.5.1"
iai-callgrind = "0.14.0"
rand = "0.9.0-alpha.2"
# render
bevy = { version = "0.14.2", default-features = false }
bevy_egui = "0.29.0"
bevy_mod_picking = "0.20.1"
bevy_mod_outline = "0.8.3"
egui_dock = "0.13.0"
[profile.bench]
debug = true
[profile.profiling]
inherits = "release"
debug = true