-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
38 lines (32 loc) · 826 Bytes
/
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
[package]
name = "tessellation"
version = "0.8.2"
authors = ["Henning Meyer <tutmann@gmail.com>"]
edition = "2018"
description = "3d tessellation library."
repository = "https://github.com/hmeyer/tessellation"
readme = "README.md"
keywords = ["tessellation", "3d", "manifold", "dual-contouring"]
license = "Apache-2.0 OR MIT"
[lib]
name = "tessellation"
path = "src/lib.rs"
[dependencies]
alga = "0.9"
nalgebra = "0.22"
rand = "0.7"
rayon = "1.2"
once_cell = "1.4"
bbox = "0.11"
num-traits = "0.2"
[dev-dependencies]
approx = "0.3"
bencher = "0.1"
implicit3d = "0.14"
[[bench]]
name = "tessellation"
path = "src/benches/tessellation.rs"
harness = false
[badges]
travis-ci = { repository = "hmeyer/tessellation", branch = "master" }
codecov = { repository = "hmeyer/tessellation", branch = "master", service = "github" }