forked from evenfurther/pathfinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (50 loc) · 1.34 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "pathfinding"
description = "Pathfinding, flow, and graph algorithms"
repository = "https://github.com/samueltardieu/pathfinding"
keywords = ["shortest-path", "astar", "dijkstra", "flow", "graph"]
license = "Apache-2.0/MIT"
homepage = "https://rfc1149.net/devel/pathfinding.html"
documentation = "https://docs.rs/pathfinding/"
version = "3.0.15-alpha.0"
authors = ["Samuel Tardieu <[email protected]>"]
categories = ["algorithms"]
readme = "README.md"
edition = "2021"
rust-version = "1.62.1"
[dependencies]
fixedbitset = "0.4.0"
itertools = "0.10.0"
num-traits = "0.2.6"
indexmap = "1.7.0"
rustc-hash = "1.1.0"
integer-sqrt = "0.1.5"
thiserror = "1.0.30"
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
lazy_static = "1.2.0"
movingai = "1.0.0"
noisy_float = "0.2.0"
rand = "0.8.0"
rand_xorshift = "0.3.0"
# Not a real dependency, but needed since crossbeam-utils 0.6.5
# does not compile anymore as of 2020-04-29.
rayon = "1.3.0"
# Not a real dependency, but needed since criterion 0.4.0
# does not compile anymore as of 2022-10-03.
regex = "1.6.0"
trybuild = "1.0.49"
[[bench]]
name = "algos"
harness = false
[[bench]]
name = "algos-fill"
harness = false
[[bench]]
name = "movingai"
harness = false
[[bench]]
name = "edmondskarp"
harness = false
[badges]
travis-ci = { repository = "samueltardieu/pathfinding" }