-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (36 loc) · 856 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
39
40
41
[workspace]
members = [
"qhull-sys",
]
[package]
name = "qhull"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
description = "Rust bindings to Qhull"
readme = "README.md"
[workspace.package]
edition = "2021"
version = "0.4.0"
license = "MIT"
repository = "https://github.com/LucaCiucci/qhull-rs"
keywords = ["qhull", "geometry", "convex-hull", "delaunay", "voronoi"]
exclude = [
"/qhull-sys",
]
include = [
"/src/",
"/examples/",
"/Cargo.toml",
"/README.md",
"/LICENSE",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
qhull-sys = { version = "0.4", path = "qhull-sys", features = [ "include-programs" ]}
thiserror = "2.0.11"
[dev-dependencies]
rand = "0.8.5"
svg = "0.18.0"