2023-12-25 23:47:13 +00:00
|
|
|
[package]
|
2024-01-02 19:20:10 +00:00
|
|
|
name = "manifold"
|
2023-12-25 23:47:13 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-01-02 19:20:10 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
authors = ["Julius Koskela <julius.koskela@nordic-dev.net>"]
|
2023-12-25 23:47:13 +00:00
|
|
|
|
2024-01-02 19:20:10 +00:00
|
|
|
description = """
|
|
|
|
GDSL is a graph data-structure library including graph containers,
|
|
|
|
connected node strutures and efficient algorithms on those structures.
|
|
|
|
Nodes are independent of a graph container and can be used as connected
|
|
|
|
smart pointers.
|
|
|
|
"""
|
|
|
|
|
|
|
|
repository = "https://nordic-dev.net/julius/manifold"
|
|
|
|
|
|
|
|
keywords = ["data-structures", "algorithms", "containers"]
|
|
|
|
categories = ["data-structures", "algorithms", "mathematics", "science"]
|
2023-12-25 23:47:13 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bytemuck = "1.14.0"
|
2024-01-02 19:20:10 +00:00
|
|
|
getset = "0.1.2"
|
|
|
|
itertools = "0.12.0"
|
2023-12-25 23:47:13 +00:00
|
|
|
num = "0.4.1"
|
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
2024-01-02 19:20:10 +00:00
|
|
|
serde_json = "1.0.108"
|
|
|
|
static_assertions = "1.1.0"
|
|
|
|
thiserror = "1.0.52"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.8.5"
|
|
|
|
criterion = "0.5.1"
|