Skip to content

Commit f1f7662

Browse files
committed
Fixed deps.
1 parent 9c14d9b commit f1f7662

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

Package.swift

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,44 @@ let package = Package(
1010
],
1111
products: [
1212
.library(
13-
name: "SPProfiling",
13+
name: "SPProfiling",
1414
targets: ["SPProfiling"]
1515
)
1616
],
1717
dependencies: [
18+
.package(
19+
name: "SPAlert",
20+
url: "https://github.com/ivanvorobei/SPAlert", .upToNextMajor(from: "4.2.0")
21+
),
1822
.package(
1923
name: "NativeUIKit",
2024
url: "https://github.com/ivanvorobei/NativeUIKit", .upToNextMajor(from: "1.3.1")
2125
),
2226
.package(
2327
name: "SPFirebase",
24-
url: "https://github.com/ivanvorobei/SPFirebase", .upToNextMajor(from: "1.0.4")
28+
url: "https://github.com/ivanvorobei/SPFirebase", .upToNextMajor(from: "1.0.5")
2529
),
2630
.package(
2731
name: "SPSafeSymbols",
2832
url: "https://github.com/sparrowcode/SPSafeSymbols", .upToNextMajor(from: "1.0.4")
33+
),
34+
.package(
35+
name: "Nuke",
36+
url: "https://github.com/kean/Nuke", .upToNextMajor(from: "10.7.1")
2937
)
3038
],
3139
targets: [
3240
.target(
3341
name: "SPProfiling",
3442
dependencies: [
43+
.product(name: "SPAlert", package: "SPAlert"),
3544
.product(name: "NativeUIKit", package: "NativeUIKit"),
3645
.product(name: "SPFirebaseAuth", package: "SPFirebase"),
3746
.product(name: "SPFirebaseFirestore", package: "SPFirebase"),
3847
.product(name: "SPFirebaseMessaging", package: "SPFirebase"),
3948
.product(name: "SPFirebaseStorage", package: "SPFirebase"),
4049
.product(name: "SPSafeSymbols", package: "SPSafeSymbols"),
50+
.product(name: "Nuke", package: "Nuke")
4151
],
4252
resources: [
4353
.process("Resources")

Sources/SPProfiling/Interface/Devices/DeviceTableCell.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
import UIKit
2424
import SparrowKit
2525
import SPDiffable
26-
import Models
27-
import Texts
2826

2927
class DeviceTableCell: SPTableViewCell {
3028

Sources/SPProfiling/Interface/Devices/DevicesController.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
import UIKit
2424
import SparrowKit
2525
import SPDiffable
26-
import Models
27-
import Texts
2826

2927
class DevicesController: SPDiffableTableController {
3028

Sources/SPProfiling/Interface/NativeAvatarViewExtension.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import UIKit
2323
import NativeUIKit
2424
import SparrowKit
25-
import Models
2625
import Nuke
2726

2827
extension NativeAvatarView: Nuke_ImageDisplaying {

Sources/SPProfiling/Interface/Profile/CurrentProfileController+Internal.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import UIKit
2323
import NativeUIKit
2424
import SparrowKit
2525
import SPDiffable
26-
import SFSymbols
26+
import SPSafeSymbols
2727
import SPAlert
2828

2929
extension CurrentProfileController {

Sources/SPProfiling/Interface/Profile/CurrentProfileController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import UIKit
2424
import SparrowKit
2525
import NativeUIKit
2626
import SPDiffable
27-
import SFSymbols
27+
import SPSafeSymbols
2828
import SPAlert
2929

3030
class CurrentProfileController: NativeProfileController {

0 commit comments

Comments
 (0)