Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
trasch committed Sep 11, 2024
1 parent 0a34075 commit 179bd7c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "d4f01668212a4ade4b27f5202b22fcbdb7a3a297439343558ffd013a42a80e77",
"originHash" : "f1ad1e8a219660607fd3980e4f33f238b09bdbd0f635a935bce1693f8f2bda2e",
"pins" : [
{
"identity" : "async-kit",
Expand All @@ -15,8 +15,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Outdooractive/gis-tools",
"state" : {
"revision" : "831a87ebd1ae3bb013c46b1d1752400dbc7bc352",
"version" : "1.7.0"
"revision" : "96aeecd98b0b2871e5f654d8888c7ea60fea8575",
"version" : "1.8.4"
}
},
{
Expand All @@ -33,8 +33,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Outdooractive/mvt-tools",
"state" : {
"revision" : "185c831b038f317b53c861798d1f3d4749891506",
"version" : "1.7.0"
"revision" : "8a4bdf7a632b480557e8b5d0bd4f761c64730f6b",
"version" : "1.8.5"
}
},
{
Expand All @@ -51,17 +51,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/vapor/postgres-nio.git",
"state" : {
"revision" : "5c268768890b062803a49f1358becc478f954265",
"version" : "1.21.5"
"revision" : "cd5318a01a1efcb1e0b3c82a0ce5c9fefaf1cb2d",
"version" : "1.22.1"
}
},
{
"identity" : "postgresconnectionpool",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Outdooractive/PostgresConnectionPool.git",
"state" : {
"revision" : "326677c3b0b0148fcd48b81e1684af82a8cbcf06",
"version" : "0.8.0"
"revision" : "9052f653a7199136878b251dc69785632a024d52",
"version" : "0.8.1"
}
},
{
Expand All @@ -87,8 +87,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser",
"state" : {
"revision" : "0fbc8848e389af3bb55c182bc19ca9d5dc2f255b",
"version" : "1.4.0"
"revision" : "41982a3656a71c768319979febd796c6fd111d5c",
"version" : "1.5.0"
}
},
{
Expand Down Expand Up @@ -186,8 +186,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-protobuf",
"state" : {
"revision" : "9f0c76544701845ad98716f3f6a774a892152bcb",
"version" : "1.26.0"
"revision" : "edb6ed4919f7756157fe02f2552b7e3850a538e5",
"version" : "1.28.1"
}
},
{
Expand Down Expand Up @@ -222,8 +222,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/jpsim/Yams",
"state" : {
"revision" : "9ff1cc9327586db4e0c8f46f064b6a82ec1566fa",
"version" : "4.0.6"
"revision" : "3036ba9d69cf1fd04d433527bc339dc0dc75433d",
"version" : "5.1.3"
}
}
],
Expand Down
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ let package = Package(
.library(name: "MVTPostgis", targets: ["MVTPostgis"]),
],
dependencies: [
.package(url: "https://github.com/Outdooractive/mvt-tools", from: "1.7.0"),
.package(url: "https://github.com/Outdooractive/gis-tools", from: "1.7.0"),
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.8.0"),
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.21.5"),
.package(url: "https://github.com/Outdooractive/mvt-tools", from: "1.8.5"),
.package(url: "https://github.com/Outdooractive/gis-tools", from: "1.8.4"),
.package(url: "https://github.com/Outdooractive/PostgresConnectionPool.git", from: "0.8.1"),
.package(url: "https://github.com/vapor/postgres-nio.git", from: "1.22.1"),
.package(url: "https://github.com/apple/swift-collections", from: "1.1.1"),
.package(url: "https://github.com/yahoojapan/SwiftyXMLParser", from: "5.6.0"),
.package(url: "https://github.com/jpsim/Yams", from: "4.0.6"),
.package(url: "https://github.com/jpsim/Yams", from: "5.1.3"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/MVTPostgis/MVTPostgis.swift
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public final class MVTPostgis {
for layer in source.layers {
let bounds = try queryBounds(
tile: tile,
tileSize: options?.tileSize ?? 256, // pixels
tileSize: VectorTile.ExportOptions.tileSize, // pixels
bufferSize: layer.properties.bufferSize) // pixels
let envelope = "ST_MakeEnvelope(\(bounds.southWest.longitude), \(bounds.southWest.latitude), \(bounds.northEast.longitude), \(bounds.northEast.latitude), \(bounds.projection.srid))"

Expand Down

0 comments on commit 179bd7c

Please sign in to comment.