From 99d9a43ee366aa84ba0078064c3dd5128bb57aa9 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Wed, 1 Jun 2022 12:57:06 +0200 Subject: [PATCH] Add architecture dependencies to example app --- .../xcshareddata/swiftpm/Package.resolved | 72 +++++++++++++++++++ Example/ExampleApp/Package.swift | 16 +++++ 2 files changed, 88 insertions(+) diff --git a/ElixxirDAppsSDK.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ElixxirDAppsSDK.xcworkspace/xcshareddata/swiftpm/Package.resolved index e43a69cb..1c4301a9 100644 --- a/ElixxirDAppsSDK.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ElixxirDAppsSDK.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,68 @@ { "pins" : [ + { + "identity" : "combine-schedulers", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/combine-schedulers", + "state" : { + "revision" : "4cf088c29a20f52be0f2ca54992b492c54e0076b", + "version" : "0.5.3" + } + }, + { + "identity" : "swift-case-paths", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-case-paths", + "state" : { + "revision" : "ce9c0d897db8a840c39de64caaa9b60119cf4be8", + "version" : "0.8.1" + } + }, + { + "identity" : "swift-collections", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-collections", + "state" : { + "revision" : "48254824bb4248676bf7ce56014ff57b142b77eb", + "version" : "1.0.2" + } + }, + { + "identity" : "swift-composable-architecture", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-composable-architecture", + "state" : { + "revision" : "c307541328a636b9e8e25ac868d89be54a8f8dbf", + "version" : "0.35.0" + } + }, + { + "identity" : "swift-composable-presentation", + "kind" : "remoteSourceControl", + "location" : "https://github.com/darrarski/swift-composable-presentation.git", + "state" : { + "revision" : "1f4d17fae1f7ed41cbed17929083190fd9a78ee6", + "version" : "0.5.2" + } + }, + { + "identity" : "swift-custom-dump", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-custom-dump", + "state" : { + "revision" : "c4f78db9b90ca57b7b6abc2223e235242739ea3c", + "version" : "0.4.0" + } + }, + { + "identity" : "swift-identified-collections", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/swift-identified-collections", + "state" : { + "revision" : "2d6b7ffcc67afd9077fac5e5a29bcd6d39b71076", + "version" : "0.4.0" + } + }, { "identity" : "swiftui-app-icon-creator", "kind" : "remoteSourceControl", @@ -8,6 +71,15 @@ "revision" : "f0c7ba4e66d3dc8135ccf9146afc05f9dff3c4ff", "version" : "1.2.0" } + }, + { + "identity" : "xctest-dynamic-overlay", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/xctest-dynamic-overlay", + "state" : { + "revision" : "50a70a9d3583fe228ce672e8923010c8df2deddd", + "version" : "0.2.1" + } } ], "version" : 2 diff --git a/Example/ExampleApp/Package.swift b/Example/ExampleApp/Package.swift index ecfd6b23..3e3cec1e 100644 --- a/Example/ExampleApp/Package.swift +++ b/Example/ExampleApp/Package.swift @@ -15,6 +15,14 @@ let package = Package( ], dependencies: [ .package(path: "../../"), // elixxir-dapps-sdk-swift + .package( + url: "https://github.com/pointfreeco/swift-composable-architecture.git", + .upToNextMajor(from: "0.35.0") + ), + .package( + url: "https://github.com/darrarski/swift-composable-presentation.git", + .upToNextMajor(from: "0.5.2") + ), ], targets: [ .target( @@ -24,6 +32,14 @@ let package = Package( name: "ElixxirDAppsSDK", package: "elixxir-dapps-sdk-swift" ), + .product( + name: "ComposableArchitecture", + package: "swift-composable-architecture" + ), + .product( + name: "ComposablePresentation", + package: "swift-composable-presentation" + ), ] ), .testTarget( -- GitLab