-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (46 loc) · 1.7 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
[package]
version = "0.1.3"
name = "hallr"
edition = "2021"
readme = "README.md"
description = "An experimental Blender addon"
repository = "https://github.com/eadf/hallr"
license = "AGPL-3.0-or-later"
authors = ["eadf"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
vector-traits = { version = "0.3.4", features = ["glam"] }
#vector-traits = { path = "../vector-traits", features = ["glam"] }
#vector-traits = {git = "https://codeberg.org/eadf/vector_traits_rs.git", features = ["glam"]}
linestring = "0.13.0"
#linestring = { path="../linestring.rs"}
#linestring = {git = "https://codeberg.org/eadf/linestring_rs.git"}
centerline = { version="0.11.0", features = ["glam"]}
#centerline = { path="../centerline.rs", features = ["glam"]}
#centerline = {git = "https://codeberg.org/eadf/centerline_rs.git", features = ["glam"]}
krakel = {version = "0.2.3", features = ["vector-traits", "glam"]}
#krakel = {path = "../krakel", features = ["vector-traits", "glam"]}
#krakel = {git = "https://codeberg.org/eadf/krakel_rs.git", features = ["vector-traits", "glam"]}
#hronn = { version = "0.4.1", features = ["glam"]}
#hronn = { path = "../hronn.rs", features = ["glam"]}
hronn = { git = "https://codeberg.org/eadf/hronn_rs.git", features = ["glam"]}
boostvoronoi = { version = "0.11.1" }
thiserror = "1.0.50"
ahash = "0.8.6"
smallvec = "1.11.2"
rayon = "1.8.0"
itertools = "0.12.0"
vob = "3.0.3"
earcutr = "0.4.3"
ilattice = { version="0.4.0", default-features = false, features = ["glam"]}
fast-surface-nets = "0.2.0"
[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
[features]
glam-core-simd = ["vector-traits/glam-core-simd"]
glam-fast-math = ["vector-traits/glam-fast-math"]
display_sdf_chunks = []
[profile.release]
lto = true