Skip to content

Commit 78133c3

Browse files
committed
Exclude test maps from package
1 parent 3596c47 commit 78133c3

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/target
22
**/*.rs.bk
33
Cargo.lock
4+
.DS_Store
45

56
# jetbrains
67
.idea

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ description = "Fast shortest path calculations on directed graphs made possible
77
repository = "https://github.com/easbar/fast_paths"
88
categories = ["algorithms", "data-structures", "science"]
99
license = "MIT/Apache-2.0"
10+
exclude = [
11+
".github/*",
12+
".gitignore",
13+
"meta/*"
14+
]
1015

1116
[badges]
1217
travis-ci = { repository = "easbar/fast_paths", branch = "master" }

changelog

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
0.3.0 (not yet released)
2+
smaller package size (excluded test maps)
23
breaking: add max_settled_nodes parameters to Params, important performance tuning for graphs with large-weight edges, #37
34
add InputGraph::to_file, #35
45
faster fast_graph building, 82e9a2ef417af6de1b2cb41bcee41b6302db1b4a

0 commit comments

Comments
 (0)