-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
34 lines (31 loc) · 985 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
[package]
name = "hexasphere"
version = "15.1.0"
authors = ["OptimisticPeach <[email protected]>"]
edition = "2021"
description = """
A library to evenly tile hexagons on a sphere.
"""
readme = "readme.md"
repository = "https://github.com/OptimisticPeach/hexasphere.git"
license = "MIT OR Apache-2.0"
keywords = ["gamedev", "graphics", "hexagons", "sphere", "math"]
categories = [
"algorithms",
"data-structures",
"graphics",
"mathematics",
"rendering::data-formats",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std"]
std = ["glam/std", "tinyvec/std"]
adjacency = ["tinyvec"]
shape-extras = []
libm = ["dep:libm", "glam/libm"]
[dependencies]
constgebra = { version = "0.1.4", default-features = false }
glam = { version = "0.29.2", default-features = false }
libm = { version = "0.2", optional = true }
tinyvec = { version = "1.8.1", optional = true, default-features = false }