Skip to content

Commit

Permalink
deps: use exact versions for stac deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Sep 6, 2024
1 parent 1e3ff86 commit 78a9176
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ geojson = "0.24"
serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
stac = { version = "0.9", path = "../core" }
stac = { version = "0.9.0", path = "../core" }
thiserror = "1"
url = "2.3"

Expand Down
4 changes: 2 additions & 2 deletions async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ http = "1"
reqwest = { version = "0.12", features = ["json"] }
serde = "1"
serde_json = "1"
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.5", path = "../api" }
stac = { version = "0.9.0", path = "../core" }
stac-api = { version = "0.5.0", path = "../api" }
thiserror = "1"
tokio = { version = "1.23", features = ["fs", "io-util"] }
url = "2"
Expand Down
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ pyo3 = { version = "0.22", optional = true }
reqwest = "0.12"
serde = "1"
serde_json = "1"
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.5", path = "../api" }
stac-async = { version = "0.5", path = "../async" }
stac = { version = "0.9.0", path = "../core" }
stac-api = { version = "0.5.0", path = "../api" }
stac-async = { version = "0.5.3", path = "../async" }
stac-duckdb = { version = "0.0.1", path = "../duckdb", optional = true }
stac-server = { version = "0.2", path = "../server", features = ["axum"] }
stac-validate = { version = "0.2", path = "../validate" }
stac-server = { version = "0.2.0", path = "../server", features = ["axum"] }
stac-validate = { version = "0.2.1", path = "../validate" }
thiserror = "1"
tokio = { version = "1.23", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions duckdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ arrow = "52"
duckdb = "1"
geoarrow = { version = "0.3.0-beta.3" }
parquet = "52"
stac = { version = "0.9", path = "../core", features = ["geoarrow"] }
stac-api = { version = "0.5", path = "../api" }
stac = { version = "0.9.0", path = "../core", features = ["geoarrow"] }
stac-api = { version = "0.5.0", path = "../api" }
thiserror = "1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions pgstac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ categories = ["database", "data-structures", "science"]
geojson = "0.24"
serde = "1"
serde_json = "1"
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.5", path = "../api" }
stac = { version = "0.9.0", path = "../core" }
stac-api = { version = "0.5.0", path = "../api" }
thiserror = "1"
tokio-postgres = { version = "0.7", features = ["with-serde_json-1"] }

Expand Down
6 changes: 3 additions & 3 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ pgstac = { version = "0.1", path = "../pgstac", optional = true }
serde = "1"
serde_json = "1"
serde_urlencoded = "0.7"
stac = { version = "0.9", path = "../core" }
stac-api = { version = "0.5", path = "../api", features = ["geo"] }
stac-async = { version = "0.5", path = "../async" }
stac = { version = "0.9.0", path = "../core" }
stac-api = { version = "0.5.0", path = "../api", features = ["geo"] }
stac-async = { version = "0.5.3", path = "../async" }
thiserror = "1"
tokio-postgres = { version = "0.7", optional = true }
tower-http = { version = "0.5", features = ["cors"], optional = true }
Expand Down

0 comments on commit 78a9176

Please sign in to comment.