Skip to content

Commit

Permalink
Merge pull request #86 from lake-of-fire/main
Browse files Browse the repository at this point in the history
Smaller dependency. Great idea - thanks!
  • Loading branch information
russell-archer authored Jan 18, 2025
2 parents 7f74a7e + c78cf36 commit c763d3a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-collections",
"state" : {
"revision" : "d029d9d39c87bed85b1c50adee7c41795261a192",
"version" : "1.0.6"
"revision" : "671108c96644956dddcd89dd59c203dcdb36cec7",
"version" : "1.1.4"
}
},
{
"identity" : "swift-docc-plugin",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-docc-plugin.git",
"state" : {
"revision" : "26ac5758409154cc448d7ab82389c520fa8a8247",
"version" : "1.3.0"
"revision" : "85e4bb4e1cd62cec64a4b8e769dcefdf0c5b9d64",
"version" : "1.4.3"
}
},
{
"identity" : "swift-docc-symbolkit",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-docc-symbolkit",
"location" : "https://github.com/swiftlang/swift-docc-symbolkit",
"state" : {
"revision" : "b45d1f2ed151d057b54504d653e0da5552844e34",
"version" : "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "StoreHelper",
dependencies: [.product(name: "Collections", package: "swift-collections")],
dependencies: [.product(name: "OrderedCollections", package: "swift-collections")],
resources: [.process("Resources")])
]
)
2 changes: 1 addition & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "StoreHelper",
dependencies: [.product(name: "Collections", package: "swift-collections")],
dependencies: [.product(name: "OrderedCollections", package: "swift-collections")],
resources: [.process("Resources")])
]
)
2 changes: 1 addition & 1 deletion Sources/StoreHelper/Core/StoreHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import StoreKit
import Collections
import OrderedCollections

public typealias ProductId = String
public typealias ShouldAddStorePaymentHandler = (_ payment: SKPayment, _ product: SKProduct) -> Bool
Expand Down

0 comments on commit c763d3a

Please sign in to comment.