-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (23 loc) · 802 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
[package]
name = "simple_graph_algorithms"
version = "1.0.0"
edition = "2021"
authors = ["Louis H."]
description = "A library with the goal of making running graph algorithms as easy as possible."
license = "MIT"
repository = "https://github.com/LMH01/simple_graph_algorithms"
keywords = ["graph", "pathfinding", "dijkstra", "bellman-ford", "easy-to-use"]
categories = ["algorithms"]
readme = "README.md"
exclude = [".github"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
from_instruction = []
serde = ["dep:serde"]
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[[bench]]
name = "algorithm_benchmark"
harness = false