Skip to content

Commit

Permalink
Merge pull request #3 from gandalf-network/fix/package-resolution
Browse files Browse the repository at this point in the history
fix: Package Resolution issues
  • Loading branch information
sa-ma authored Jul 3, 2024
2 parents 2bdcf85 + 9cac405 commit 9c3a70a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 9 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
"version" : "1.12.2"
}
},
{
"identity" : "gandalf-ios-apollo-api",
"kind" : "remoteSourceControl",
"location" : "https://github.com/gandalf-network/gandalf-ios-apollo-api.git",
"state" : {
"branch" : "main",
"revision" : "b5b32e9df4443c5b583dc5a81918aada9b30003c"
}
},
{
"identity" : "sqlite.swift",
"kind" : "remoteSourceControl",
Expand Down
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apollographql/apollo-ios.git", .upToNextMajor(from: "1.12.2")),
.package(path: "./GandalfConnectAPI"),
.package(
url: "https://github.com/gandalf-network/gandalf-ios-apollo-api.git",
branch: "main"
)
],
targets: [
.target(
name: "GandalfConnect",
dependencies: [
.product(name: "GandalfConnectAPI", package: "GandalfConnectAPI"),
.product(name: "GandalfConnectAPI", package: "gandalf-ios-apollo-api"),
.product(name: "Apollo", package: "apollo-ios"),
],
path: "./Sources/GandalfConnect"
Expand Down

0 comments on commit 9c3a70a

Please sign in to comment.