-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 930 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
33
34
35
36
37
38
39
[package]
name = "gdsl"
version = "0.2.1"
edition = "2021"
readme = "README.md"
license = "MIT/Apache-2.0"
authors = ["Julius Koskela <[email protected]>"]
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://github.com/juliuskoskela/gdsl"
keywords = ["data-structures", "graphs", "algorithms", "containers", "graph-theory"]
categories = ["data-structures", "algorithms", "mathematics", "science"]
[dependencies]
ahash = "0.8.6"
serde = "1.0.190"
thiserror = "1.0.50"
[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
serde_json = "1.0.108"
serde_cbor = "0.11.2"
petgraph = "0.6.4"
once_cell = "1.8.0"
rayon = "1.8.0"
[[bench]]
name = "graph_benchmark"
harness = false
[profile.release]
debug = true