-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
32 lines (27 loc) · 896 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
[package]
name = "lox"
version = "0.1.1"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2021"
description = """
Fast polygon mesh library with different data structures and traits to abstract over those.
"""
documentation = "https://docs.rs/lox/"
repository = "https://github.com/LukasKalbertodt/lox/"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["mesh", "polygon", "half-edge-mesh", "geometry"]
categories = ["graphics", "data-structures", "science"]
exclude = [".github", "old_code", "stuff"]
[features]
large-handle = []
[dependencies]
ahash = "0.8.3"
leer = { version = "0.1.1", features = ["derive"] }
lina = { version = "0.1.4", default-features = false }
lox-macros = { version = "=0.0.1", path = "lox-macros" }
num-traits = "0.2.15"
optional = "0.5"
smallvec = { version = "1.10.0", features = ["union"] }
stable-vec = "0.4"
typebool = "0.1.0"