Skip to content

Commit

Permalink
Fix/ios der encoding presentation signature (#69)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Tate <[email protected]>
Co-authored-by: Simon Bihel <[email protected]>
Co-authored-by: Juliano Cezar Chagas Tavares <[email protected]>
  • Loading branch information
3 people authored Dec 20, 2024
1 parent 2ca2027 commit efc51de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,33 @@
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Swift Package: SpruceIDMobileSdkRs

import PackageDescription;
import PackageDescription

let package = Package(
name: "SpruceIDMobileSdkRs",
platforms: [
.iOS(.v14),
.macOS(.v10_15)
.macOS(.v10_15),
],
products: [
.library(
name: "SpruceIDMobileSdkRs",
targets: ["SpruceIDMobileSdkRs"]
)
],
dependencies: [ ],
dependencies: [],
targets: [
.binaryTarget(name: "RustFramework", url: "https://github.com/spruceid/mobile-sdk-rs/releases/download/0.4.3/RustFramework.xcframework.zip", checksum: "bd273b22e74532c6bb2ff229e43083ad1df67c431b5e96dda64c505beba896b4"),
// .binaryTarget(name: "RustFramework", url: "https://github.com/spruceid/mobile-sdk-rs/releases/download/0.4.3/RustFramework.xcframework.zip", checksum: "bd273b22e74532c6bb2ff229e43083ad1df67c431b5e96dda64c505beba896b4"),
.binaryTarget(
name: "RustFramework",
url:
"https://github.com/spruceid/mobile-sdk-rs/releases/download/0.4.3/RustFramework.xcframework.zip",
checksum: "bd273b22e74532c6bb2ff229e43083ad1df67c431b5e96dda64c505beba896b4"),
.target(
name: "SpruceIDMobileSdkRs",
dependencies: [
.target(name: "RustFramework")
],
path: "./MobileSdkRs/Sources/MobileSdkRs"
)
),
]
)

0 comments on commit efc51de

Please sign in to comment.