-
Notifications
You must be signed in to change notification settings - Fork 71
/
Cargo.toml
77 lines (66 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "pathfinding"
description = "Pathfinding, flow, and graph algorithms"
repository = "https://github.com/evenfurther/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 = "4.11.0"
authors = ["Samuel Tardieu <sam@rfc1149.net>"]
categories = ["algorithms"]
readme = "README.md"
edition = "2021"
rust-version = "1.77.2"
[package.metadata.release]
sign-commit = true
sign-tag = true
pre-release-replacements = [
{file = "README.md", search = "pathfinding = \".*\"", replace = "pathfinding = \"{{version}}\"", exactly = 1},
{file = "CHANGELOG.md", search = "n\\.n\\.n", replace = "{{tag_name}}", exactly = 1}
]
[dependencies]
num-traits = "0.2.19"
indexmap = "2.5.0"
rustc-hash = "2.0.0"
integer-sqrt = "0.1.5"
thiserror = "1.0.63"
deprecate-until = "0.1.1"
[dev-dependencies]
codspeed-criterion-compat = "2.0.0"
itertools = "0.13.0"
lazy_static = "1.5.0"
movingai = "1.3.1"
noisy_float = "0.2.0"
rand = "0.8.5"
rand_xorshift = "0.3.0"
# Not a real dependency, but needed since criterion 0.4.0
# does not compile anymore as of 2022-10-03.
regex = "1.10.6"
trybuild = "1.0.99"
version_check = "0.9.5"
[lints.clippy]
module_name_repetitions = { level = "allow", priority = 1 }
too_long_first_doc_paragraph = { level = "allow", priority = 1 } # Temporary
pedantic = { level = "deny", priority = 0 }
[[bench]]
name = "algos"
harness = false
[[bench]]
name = "algos-fill"
harness = false
[[bench]]
name = "movingai"
harness = false
[[bench]]
name = "edmondskarp"
harness = false
[[bench]]
name = "kuhn_munkres"
harness = false
[[bench]]
name = "separate_components"
harness = false
[[bench]]
name = "matrices"
harness = false