forked from yamafaktory/hypergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 774 Bytes
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
[package]
authors = ["Davy Duperron <yamafaktory@gmail.com>"]
categories = ["data-structures", "mathematics", "science"]
description = "Hypergraph is data structure library to create a directed hypergraph in which an hyperedge can join any number of vertices."
edition = "2021"
exclude = [".github", "hypergraph.svg", "rustfmt.toml"]
keywords = ["data-structure", "graph", "hypergraph"]
license = "MIT"
name = "hypergraph"
readme = "README.md"
repository = "https://github.com/yamafaktory/hypergraph"
rust-version = "1.56"
version = "2.1.2"
[dependencies]
ahash = "0.8.3"
indexmap = { version = "2.0.0", features = ["rayon"] }
itertools = "0.11.0"
rayon = "1.7.0"
thiserror = "1.0.47"
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "performance"
harness = false