-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Dylan DPC <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
12 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 |
---|---|---|
|
@@ -5,8 +5,7 @@ default-members = ["geozero", "geozero-cli"] | |
resolver = "2" | ||
|
||
[workspace.package] | ||
# This version should match the version in [workspace.dependencies] below | ||
version = "0.13.0" | ||
version = "0.14.0" | ||
authors = ["Pirmin Kalberer <[email protected]>", "Yuri Astrakhan <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/georust/geozero" | ||
|
@@ -17,8 +16,10 @@ license = "MIT OR Apache-2.0" | |
[workspace.dependencies] | ||
# Used in geozero-cli and geozero-bench | ||
# geozero version must be in sync with flatgeobuf version! | ||
geozero = { version = "0.13.0", default-features = false } | ||
flatgeobuf = "4.3.0" | ||
#geozero = { version = "0.14.0", default-features = false } | ||
geozero = { git = "https://github.com/pka/geozero", branch = "release-0-14", default-features = false } | ||
#flatgeobuf = "4.4.0" | ||
flatgeobuf = { git = "https://github.com/pka/flatgeobuf", branch = "geozero-0-14" } | ||
|
||
async-trait = "0.1" | ||
byteorder = { version = "1.4.3", default-features = false } | ||
|
@@ -27,7 +28,7 @@ clap = { version = "4.3", features = ["derive"] } | |
criterion = "0.5.1" | ||
csv = "1.2.2" | ||
dbase = "0.4" | ||
diesel = { version = "2.1.0", default-features = false, features = ["postgres"] } | ||
diesel = { version = "2.2.3", default-features = false, features = ["postgres"] } | ||
dup-indexer = "0.3" | ||
env_logger = "0.10.0" | ||
futures-util = "0.3.28" | ||
|
@@ -57,7 +58,4 @@ tokio = { version = "1.30.0", default-features = false } | |
wkt = "0.11" | ||
|
||
[patch.crates-io] | ||
geozero = { path = "./geozero" } | ||
#flatgeobuf = { path = "../../gis/flatgeobuf/src/rust" } | ||
# use pre-release version of flatgeobuf for testing | ||
flatgeobuf = { git = "https://github.com/michaelkirk/flatgeobuf", branch = "mkirk/geozero-0.13.0" } | ||
#geozero = { path = "./geozero" } |
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