Skip to content

Commit

Permalink
fix: Correctly link MQTT (#1438)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-coye authored Feb 17, 2025
2 parents c07d8f5 + a009db2 commit 07aac64
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 12 deletions.
17 changes: 13 additions & 4 deletions Tuist/Package.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"originHash" : "5a7622e6f22f2c0d8ab585cfe7e68ac4429f608132773fc8375408e608ddb814",
"originHash" : "68ed75fdcce0038d075c6f626ce5daf49e91de45e65e94844eea781997c8027f",
"pins" : [
{
"identity" : "alamofire",
Expand Down Expand Up @@ -202,10 +202,10 @@
{
"identity" : "mqtt-nio",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/mqtt-nio",
"location" : "https://github.com/swift-server-community/mqtt-nio",
"state" : {
"revision" : "96ece4989a8c1c4e0d0924073862916d29fd9bf0",
"version" : "2.4.1"
"revision" : "aa23a1a17344bea48d7585afc817e7dd75ce2a52",
"version" : "2.12.0"
}
},
{
Expand Down Expand Up @@ -316,6 +316,15 @@
"version" : "2.81.0"
}
},
{
"identity" : "swift-nio-ssl",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-nio-ssl.git",
"state" : {
"revision" : "0cc3528ff48129d64ab9cab0b1cd621634edfc6b",
"version" : "2.29.3"
}
},
{
"identity" : "swift-nio-transport-services",
"kind" : "remoteSourceControl",
Expand Down
27 changes: 19 additions & 8 deletions Tuist/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,34 @@ let packageSettings = PackageSettings(
productTypes: [
"Alamofire": .framework,
"Atlantis": .staticFramework,
"Atomics": .framework,
"CNIODarwin": .framework,
"CNIOLinux": .framework,
"CNIOWindows": .framework,
"CocoaLumberjackSwift": .framework,
"CocoaLumberjack": .framework,
"InfomaniakDI": .framework,
"InfomaniakLogin": .framework,
"InfomaniakCore": .framework,
"DequeModule": .framework,
"DesignSystem": .framework,
"InfomaniakCoreCommonUI": .framework,
"InfomaniakCoreSwiftUI": .framework,
"InfomaniakCoreUIKit": .framework,
"InfomaniakCore": .framework,
"InfomaniakDI": .framework,
"InfomaniakLogin": .framework,
"InternalCollectionsUtilities": .framework,
"Kingfisher": .framework,
"Lottie": .framework,
"MyKSuite": .framework,
"NIOConcurrencyHelpers": .framework,
"NIOCore": .framework,
"NIOTransportServices": .framework,
"NIO": .framework,
"RealmSwift": .framework,
"Realm": .framework,
"MyKSuite": .framework,
"InfomaniakCoreSwiftUI": .framework,
"DesignSystem": .framework
"_NIOBase64": .framework,
"_NIODataStructures": .framework
]
)

#endif

let package = Package(
Expand All @@ -52,7 +63,7 @@ let package = Package(
.package(url: "https://github.com/Infomaniak/DropDown", branch: "master"),
.package(url: "https://github.com/flowbe/SwiftRegex", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/getsentry/sentry-cocoa", .upToNextMajor(from: "8.0.0")),
.package(url: "https://github.com/Infomaniak/mqtt-nio", .upToNextMajor(from: "2.4.1")),
.package(url: "https://github.com/swift-server-community/mqtt-nio", .upToNextMajor(from: "2.12.0")),
.package(url: "https://github.com/airbnb/HorizonCalendar", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Cocoanetics/Kvitto", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/raspu/Highlightr", .upToNextMajor(from: "2.1.0")),
Expand Down

0 comments on commit 07aac64

Please sign in to comment.