Julius Koskela
35da61c619
General plumming and types as well as weakly tested implemnentations. Reviewed-on: #1 Co-authored-by: Julius Koskela <julius.koskela@unikie.com> Co-committed-by: Julius Koskela <julius.koskela@unikie.com>
33 lines
858 B
TOML
33 lines
858 B
TOML
[package]
|
|
name = "manifold"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT/Apache-2.0"
|
|
authors = ["Julius Koskela <julius.koskela@nordic-dev.net>"]
|
|
|
|
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"]
|
|
|
|
[dependencies]
|
|
bytemuck = "1.14.0"
|
|
getset = "0.1.2"
|
|
itertools = "0.12.0"
|
|
num = "0.4.1"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
static_assertions = "1.1.0"
|
|
thiserror = "1.0.52"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|
|
criterion = "0.5.1"
|