-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.24 KB
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 = "geomancer"
version = "0.0.1"
edition = "2021"
authors = ["AndrewB330"]
readme = "README.md"
description = "Performance-oriented Rust library providing a suite of geometry primitives and algorithms."
documentation = "https://docs.rs/geomancer"
repository = "https://github.com/AndrewB330/geomancer"
homepage = "https://github.com/AndrewB330/geomancer"
license = "MIT OR Apache-2.0"
keywords = ["geometry", "algorithms", "convex-hull", "triangulation", "computational-geometry"]
categories = ["algorithms", "graphics", "mathematics", "no-std"]
[dependencies]
num-traits = { version = "0.2", default-features = false }
# Optional integrations
bevy_math = { version = "0.15", optional = true, default-features = false }
glam = { version = "0.30", optional = true, default-features = false }
nalgebra = { version = "0.33", optional = true, default-features = false }
geo = { version = "0.29", optional = true, default-features = false }
[features]
default = ["std"]
std = ["num-traits/std"]
# Built-in kernel implementations for primitive types
tuple_kernels = []
array_kernels = []
# External library integrations
bevy = ["dep:bevy_math"]
glam = ["dep:glam"]
nalgebra = ["dep:nalgebra"]
geo = ["dep:geo"]
[dev-dependencies]
rstest = "0.25"
rand = "0.9"