Skip to content

Commit

Permalink
Updated Firebase & Nuke Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Spencer committed Oct 17, 2022
1 parent fffec23 commit 84bfacf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 51 deletions.
23 changes: 0 additions & 23 deletions FetchImageFirebase.podspec

This file was deleted.

24 changes: 12 additions & 12 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/firebase/boringssl-SwiftPM.git",
"state" : {
"revision" : "79db6516894a932d0ddaff3b05b9da1e4f6c4069",
"version" : "0.9.0"
"revision" : "dd3eda2b05a3f459fc3073695ad1b28659066eab",
"version" : "0.9.1"
}
},
{
"identity" : "firebase-ios-sdk",
"kind" : "remoteSourceControl",
"location" : "https://github.com/firebase/firebase-ios-sdk.git",
"state" : {
"revision" : "cfa854c9c1073c4d1b83b20dfcb1ef7ceb85388b",
"version" : "9.0.0"
"revision" : "7e80c25b51c2ffa238879b07fbfc5baa54bb3050",
"version" : "9.6.0"
}
},
{
"identity" : "googleappmeasurement",
"kind" : "remoteSourceControl",
"location" : "https://github.com/google/GoogleAppMeasurement.git",
"state" : {
"revision" : "6a3123fab90f3884167990bee9bb30097d99c98c",
"version" : "9.0.0"
"revision" : "c1cfde8067668027b23a42c29d11c246152fe046",
"version" : "9.6.0"
}
},
{
Expand All @@ -59,8 +59,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/grpc/grpc-ios.git",
"state" : {
"revision" : "87cbe43709371123e95ca10d6956938741388af7",
"version" : "1.44.1-grpc"
"revision" : "8440b914756e0d26d4f4d054a1c1581daedfc5b6",
"version" : "1.44.3-grpc"
}
},
{
Expand All @@ -86,17 +86,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/firebase/nanopb.git",
"state" : {
"revision" : "7ee9ef9f627d85cbe1b8c4f49a3ed26eed216c77",
"version" : "2.30908.0"
"revision" : "819d0a2173aff699fb8c364b6fb906f7cdb1a692",
"version" : "2.30909.0"
}
},
{
"identity" : "nuke",
"kind" : "remoteSourceControl",
"location" : "https://github.com/kean/Nuke.git",
"state" : {
"revision" : "958ca90df22fc77fdf33b5b9a6d70102b7743851",
"version" : "10.9.0"
"revision" : "0d8a0dc3cca7432a6772ec546a7e5e1b20103bda",
"version" : "11.3.0"
}
},
{
Expand Down
27 changes: 11 additions & 16 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,31 +1,26 @@
// swift-tools-version:5.6
// swift-tools-version:5.7

import PackageDescription

let package = Package(
name: "FetchImage",
platforms: [
.iOS("15.0")
.iOS(.v15)
],
products: [
.library(name: "FetchImage", targets: ["FetchImage"])
],
dependencies: [
.package(
url: "https://github.com/kean/Nuke.git",
.upToNextMajor(from: "10.9.0")
),
.package(
url: "https://github.com/firebase/firebase-ios-sdk.git",
.upToNextMajor(from: "9.0.0")
)
.package(url: "https://github.com/kean/Nuke.git", from: "11.3.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", from: "9.6.0")
],
targets: [
.target(name: "FetchImage",
dependencies: [
"Nuke",
.product(name: "FirebaseStorage", package: "firebase-ios-sdk")
],
path: "Source")
.target(
name: "FetchImage",
dependencies: [
"Nuke",
.product(name: "FirebaseStorage", package: "firebase-ios-sdk")
],
path: "Source")
]
)

0 comments on commit 84bfacf

Please sign in to comment.