-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
41 additions
and
32 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 @@ | ||
[package] | ||
name = "bbox-asset-server" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
authors = ["Pirmin Kalberer <[email protected]>"] | ||
readme = "README.md" | ||
description = "Serving static and templated files" | ||
|
@@ -16,7 +16,7 @@ homepage.workspace = true | |
actix-files = "0.6.0" | ||
actix-web = { workspace = true } | ||
async-trait = { workspace = true } | ||
bbox-core = { path = "../bbox-core", version = "0.6.1" } | ||
bbox-core = { path = "../bbox-core", version = "0.6.2" } | ||
clap = { workspace = true } | ||
configparser = "3.0.0" | ||
log = { workspace = true } | ||
|
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,6 @@ | ||
[package] | ||
name = "bbox-core" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
authors = ["Pirmin Kalberer <[email protected]>"] | ||
readme = "README.md" | ||
description = "Common functionality for BBOX services" | ||
|
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
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
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,6 @@ | ||
[package] | ||
name = "bbox-tile-server" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
authors = ["Pirmin Kalberer <[email protected]>"] | ||
readme = "README.md" | ||
description = "Vector and raster tiles server supporting various sources and storage formats" | ||
|
@@ -26,9 +26,9 @@ actix-web = { workspace = true } | |
anyhow = "1.0.52" | ||
async-channel = "2.3.1" | ||
async-trait = { workspace = true } | ||
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.1", optional = true } | ||
bbox-core = { path = "../bbox-core", version = "0.6.1" } | ||
bbox-map-server = { path = "../bbox-map-server", version = "0.6.1", optional = true } | ||
bbox-asset-server = { path = "../bbox-asset-server", version = "0.6.2", optional = true } | ||
bbox-core = { path = "../bbox-core", version = "0.6.2" } | ||
bbox-map-server = { path = "../bbox-map-server", version = "0.6.2", optional = true } | ||
blake3 = "1.5.4" | ||
bytes = "1.1.0" | ||
chrono = { workspace = true } | ||
|