Skip to content

Commit

Permalink
Try #850:
Browse files Browse the repository at this point in the history
  • Loading branch information
bors[bot] committed Jun 23, 2022
2 parents 9e948b2 + 9b529af commit 49827cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions geo-bool-ops-benches/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ geo-types = { path = "../geo-types" }
log = "0.4.11"

[dev-dependencies]
approx = "0.4.0"
approx = ">= 0.4.0, < 0.6.0"
criterion = { version = "0.3", features = ["html_reports"] }
geo-test-fixtures = { path = "../geo-test-fixtures" }
jts-test-runner = { path = "../jts-test-runner" }
Expand All @@ -32,4 +32,4 @@ geojson = { version = "0.22.3", features = [ "geo-types" ] }

[[bench]]
name = "boolean_ops"
harness = false
harness = false
4 changes: 2 additions & 2 deletions geo-types/Cargo.toml
Expand Up @@ -19,12 +19,12 @@ use-rstar_0_8 = ["rstar_0_8", "approx"]
use-rstar_0_9 = ["rstar_0_9", "approx"]

[dependencies]
approx = { version = "0.4.0", optional = true }
approx = { version = ">= 0.4.0, < 0.6.0", optional = true }
arbitrary = { version = "1", optional = true }
num-traits = "0.2"
rstar_0_8 = { package = "rstar", version = "0.8", optional = true }
rstar_0_9 = { package = "rstar", version = "0.9", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }

[dev-dependencies]
approx = "0.4.0"
approx = ">= 0.4.0, < 0.6.0"
2 changes: 1 addition & 1 deletion geo/Cargo.toml
Expand Up @@ -27,7 +27,7 @@ rstar = "0.9.3"
serde = { version = "1.0", optional = true, features = ["derive"] }

[dev-dependencies]
approx = "0.4.0"
approx = ">= 0.4.0, < 0.6.0"
criterion = { version = "0.3", features = ["html_reports"] }
geo-test-fixtures = { path = "../geo-test-fixtures" }
jts-test-runner = { path = "../jts-test-runner" }
Expand Down
2 changes: 1 addition & 1 deletion jts-test-runner/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
approx = "0.4.0"
approx = ">= 0.4.0, < 0.6.0"
geo = { path = "../geo" }
include_dir = { version = "0.6.0", features = ["glob"] }
log = "0.4.14"
Expand Down

0 comments on commit 49827cd

Please sign in to comment.