-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.03 KB
/
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
[package]
name = "surface-grid"
version = "0.4.0"
authors = [
"WhyAreAllTheseTaken <[email protected]>"
]
edition = "2021"
license = "BSD-3-Clause"
resolver = "2"
description = "A crate providing data structures for square-tiled grids wrapped around the surface of certain objects."
homepage = "https://github.com/WhyAreAllTheseTaken/surface-grid"
repository = "https://github.com/WhyAreAllTheseTaken/surface-grid"
keywords = ["projection", "cellular", "automata", "globe", "map"]
categories = ["data-structures", "simulation"]
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"Cargo.lock",
"src/**.rs",
"examples/**.rs",
"CHANGELOG.md"
]
[dependencies]
itertools = "0.14.0"
rayon = "1.10.0"
static-array = { version = "0.5.0", features = ["rayon"] }
[dev-dependencies]
pixels = "0.14.0"
winit = { version = "0.30.8", default-features = false, features = ["rwh_05", "x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"] }
rand = "0.8.5"
approx = "0.5.1"