-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 729 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 729 Bytes
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 = "hexglobe"
version = "0.1.3"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Library to generate hexagonal tessellations of a sphere quickly and accurately."
repository = "https://github.com/MorganBennetDev/hexglobe-rs"
readme = "README.md"
keywords = ["gamedev", "graphics", "goldberg", "sphere", "tessellation"]
categories = ["game-development", "mathematics"]
[dependencies]
itertools = "0.14.0"
glam = "0.30.2"
[dev-dependencies]
divan = "0.1.17"
ntest = "0.9.3"
assert2 = "0.3.15"
bevy_panorbit_camera = "0.25.0"
[dev-dependencies.bevy]
version = "0.15.3"
[profile.dev.package."*"]
opt-level = 3
[[bench]]
name = "projection"
harness = false
[[bench]]
name = "adjacency"
harness = false