-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (27 loc) · 934 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 = "lattice-graph"
version = "0.6.1"
authors = ["aobatact <[email protected]>"]
edition = "2018"
resolver= "2"
license = "MPL-2.0"
keywords = ["graph", "graph-algorithms", "data-structure"]
categories = ["data-structures", "game-development"]
description = "Set of Lattice(Grid) based Graph Structures"
repository = "https://github.com/aobatact/lattice-graph"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "const-generic-wrap", "hex2d" ]
[dependencies]
petgraph = { version = "0.6", default-features = false }
fixedbitset = "0.4"
const-generic-wrap = { version = "0.3", default-features = false, optional = true }
hex2d = {version = "1.0", default-features = false, optional = true }
[dev-dependencies]
criterion = "0.3.4"
rand = "0.8.0"
const-generic-wrap = { version = "0.3"}
rstest = "0.12.0"
[[bench]]
name = "bench"
harness = false