Skip to content

Commit c9bbb72

Browse files
committed
chore: sort dependencies
1 parent 85d68a3 commit c9bbb72

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

Package.resolved

Lines changed: 38 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ let package = Package(
2424
targets: ["Supabase", "Functions", "PostgREST", "Auth", "Realtime", "Storage"]),
2525
],
2626
dependencies: [
27+
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
2728
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0"..<"4.0.0"),
2829
.package(url: "https://github.com/apple/swift-http-types.git", from: "1.3.0"),
2930
.package(url: "https://github.com/apple/swift-log", from: "1.0.0"),
30-
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
3131
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
3232
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
3333
.package(url: "https://github.com/pointfreeco/swift-clocks", from: "1.0.0"),
@@ -41,15 +41,15 @@ let package = Package(
4141
.target(
4242
name: "Helpers",
4343
dependencies: [
44+
.product(name: "Clocks", package: "swift-clocks"),
4445
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
46+
.product(name: "DequeModule", package: "swift-collections"),
4547
.product(name: "HTTPTypes", package: "swift-http-types"),
4648
.product(name: "HTTPTypesFoundation", package: "swift-http-types"),
4749
.product(name: "Logging", package: "swift-log"),
48-
.product(name: "DequeModule", package: "swift-collections"),
49-
.product(name: "Clocks", package: "swift-clocks"),
50-
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
5150
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
5251
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession"),
52+
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
5353
]
5454
),
5555
.testTarget(

0 commit comments

Comments
 (0)