Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bfa3ee9

Browse files
authored
Merge pull request #4 from pka/readme-cargo-tweaks
2 parents 473ced3 + d69fced commit bfa3ee9

File tree

8 files changed

+22
-177
lines changed

8 files changed

+22
-177
lines changed

datasets/highways/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ edition = "2021"
55
description = "Highways dataset for routrs, the geograph-based shortest distance calculator for Rust"
66
license = "MIT"
77
repository = "https://github.com/deepbludev/routrs"
8-
documentation = "https://github.com/deepbludev/routrs"
8+
keywords = ["pathfinding", "routing"]
9+
categories = ["algorithms", "science::geo"]
910

1011
[dependencies]
1112
flate2 = "1.0.28"

datasets/maritime/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ edition = "2021"
55
description = "Maritime dataset for routrs, the geograph-based shortest distance calculator for Rust"
66
license = "MIT"
77
repository = "https://github.com/deepbludev/routrs"
8-
documentation = "https://github.com/deepbludev/routrs"
8+
keywords = ["pathfinding", "routing"]
9+
categories = ["algorithms", "science::geo"]
910

1011
[dependencies]
1112
flate2 = "1.0.28"

datasets/maritime/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# routrs_highways
2-
Highway extension for routrs, the Rust geograph-based shortest distance calculator
1+
# routrs_maritime
2+
Maritime dataset for routrs, the geograph-based shortest distance calculator for Rust.

datasets/railways/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ edition = "2021"
55
description = "Railways dataset for routrs, the geograph-based shortest distance calculator for Rust"
66
license = "MIT"
77
repository = "https://github.com/deepbludev/routrs"
8-
documentation = "https://github.com/deepbludev/routrs"
8+
keywords = ["pathfinding", "routing"]
9+
categories = ["algorithms", "science::geo"]
910

1011
[dependencies]
1112
flate2 = "1.0.28"

examples/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition = "2021"
55
description = "Examples for routrs"
66
license = "MIT"
77
repository = "https://github.com/deepbludev/routrs"
8-
documentation = "https://github.com/deepbludev/routrs"
98

109
[dependencies]
1110
routrs = { version = "2.0.0", path = "../lib", features = ["all"] }

examples/README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1-
# routrs_highways
2-
Highway extension for routrs, the Rust geograph-based shortest distance calculator
1+
# routrs_examples
2+
3+
Examples for routrs.
4+
5+
To run the examples:
6+
```bash
7+
cargo run -p routrs_examples --bin maritime
8+
cargo run -p routrs_examples --bin highways
9+
cargo run -p routrs_examples --bin railways
10+
cargo run -p routrs_examples --bin concurrency
11+
```

lib/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ edition = "2021"
55
description = "Geograph-based shortest distance calculation for Rust"
66
license = "MIT"
77
repository = "https://github.com/deepbludev/routrs"
8-
documentation = "https://github.com/deepbludev/routrs"
9-
8+
readme = "../README.md"
9+
keywords = ["pathfinding", "routing"]
10+
categories = ["algorithms", "science::geo"]
1011

1112
[features]
1213
default = ["core"]

lib/README.md

Lines changed: 0 additions & 167 deletions
This file was deleted.

0 commit comments

Comments
 (0)