Skip to content

Commit

Permalink
Update dev dependenices and ignore geo_types::Coordinate deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
vipera committed Nov 2, 2023
1 parent 18cc497 commit e1fc8c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ geo-types = "^0.7"
num-traits = "^0.2"

[dev-dependencies]
geo = "^0.20"
geo = "^0.26"
lazy_static = "1.4"
criterion = "0.3"
criterion = "0.5"

[[bench]]
name = "geo"
Expand Down
3 changes: 3 additions & 0 deletions examples/bbox.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Temporarily permit geo_types::Coordinate until geo-types 0.8
#![allow(deprecated)]

extern crate cheap_ruler;
#[macro_use]
extern crate geo_types;
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
//! Note: WGS84 ellipsoid is used instead of the Clarke 1866 parameters used by
//! the FCC formulas. See cheap-ruler-cpp#13 for more information.

// Temporarily permit geo_types::Coordinate until geo-types 0.8
#![allow(deprecated)]

#[macro_use]
extern crate geo_types;

Expand Down
3 changes: 3 additions & 0 deletions tests/cheap_ruler.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Temporarily permit geo_types::Coordinate until geo-types 0.8
#![allow(deprecated)]

extern crate cheap_ruler;
#[macro_use]
extern crate geo_types;
Expand Down

0 comments on commit e1fc8c9

Please sign in to comment.