Skip to content

Commit

Permalink
Fix: Migration from Go to swift
Browse files Browse the repository at this point in the history
  • Loading branch information
josmilan authored Aug 9, 2024
1 parent 7038d35 commit 0ccdb02
Show file tree
Hide file tree
Showing 38 changed files with 466 additions and 611 deletions.
37 changes: 31 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,42 @@ let package = Package(
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "PresentationExchangeSdkiOS",
targets: ["PresentationExchangeSdkiOS", "Pexioswrapper"]),
targets: ["PresentationExchangeSdkiOS"]),
],
dependencies: [
.package(
url: "https://github.com/KittyMac/Sextant.git",
.upToNextMinor(from: "0.4.0")
),
.package(
url: "https://github.com/kylef/JSONSchema.swift",
from: "0.6.0"
)
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "PresentationExchangeSdkiOS"),
.binaryTarget(
name: "Pexioswrapper",
path: "Sources/Artifacts/Pexioswrapper.xcframework"),
name: "PresentationExchangeSdkiOS",
dependencies: [
.product(
name: "Sextant",
package: "Sextant"
),
.product(
name: "JSONSchema",
package: "JSONSchema.swift"
),
]),
.testTarget(
name: "PresentationExchangeSdkiOSTests",
dependencies: ["PresentationExchangeSdkiOS"]),
dependencies: ["PresentationExchangeSdkiOS",
.product(
name: "Sextant",
package: "Sextant"
),
.product(
name: "JSONSchema",
package: "JSONSchema.swift"
)]),
])
44 changes: 0 additions & 44 deletions Sources/Artifacts/Pexioswrapper.xcframework/Info.plist

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0ccdb02

Please sign in to comment.