Files
another-boids-in-rust/vendor/hexasphere/Cargo.toml

77 lines
1.5 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "hexasphere"
version = "15.1.0"
authors = ["OptimisticPeach <patrikbuhring@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A library to evenly tile hexagons on a sphere.
"""
readme = "readme.md"
keywords = [
"gamedev",
"graphics",
"hexagons",
"sphere",
"math",
]
categories = [
"algorithms",
"data-structures",
"graphics",
"mathematics",
"rendering::data-formats",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/OptimisticPeach/hexasphere.git"
[features]
adjacency = ["tinyvec"]
default = ["std"]
libm = [
"dep:libm",
"glam/libm",
]
shape-extras = []
std = [
"glam/std",
"tinyvec/std",
]
[lib]
name = "hexasphere"
path = "src/lib.rs"
[dependencies.constgebra]
version = "0.1.4"
default-features = false
[dependencies.glam]
version = "0.29.2"
default-features = false
[dependencies.libm]
version = "0.2"
optional = true
[dependencies.tinyvec]
version = "1.8.1"
optional = true
default-features = false