This repository has been archived by the owner on Apr 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
10: Bump to 2021, WKT to 0.10, linting r=michaelkirk a=nyurik * Bump Rust edition to 2021 * Address a few `cargo clippy` suggestions * Bump WKT dependency 0.9 -> 0.10 * few minor spelling fixes - [x] I agree to follow the project's [code of conduct](https://github.com/georust/geo/blob/master/CODE_OF_CONDUCT.md). - ~[ ] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users.~ --- Co-authored-by: Yuri Astrakhan <[email protected]>
- Loading branch information
Showing
5 changed files
with
16 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.idea | ||
/target | ||
Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,7 @@ | |
name = "jts-test-runner" | ||
version = "0.1.0" | ||
authors = ["Michael Kirk <[email protected]>"] | ||
edition = "2018" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
edition = "2021" | ||
|
||
[dependencies] | ||
approx = "0.4.0" | ||
|
@@ -13,8 +11,7 @@ include_dir = { version = "0.6", features = ["search"] } | |
log = "0.4.14" | ||
serde = { version = "*", features = ["derive"] } | ||
serde-xml-rs = "*" | ||
wkt = { version = "0.9", features = ["geo-types", "serde"] } | ||
wkt = { version = "0.10.0", features = ["geo-types", "serde"] } | ||
|
||
[dev-dependencies] | ||
pretty_env_logger = "*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#[macro_use] | ||
extern crate log; | ||
|
||
mod input; | ||
use input::Operation; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters