From 44d538587d6b88334b72a6ffb79babc41e72fd34 Mon Sep 17 00:00:00 2001 From: mac-mini-003 Date: Tue, 3 Mar 2026 16:22:14 +0100 Subject: [PATCH] add new version 1.0.0-SNAPSHOT-15 --- Package.swift | 70 +++++++++++++++++++++ Sources/WebIdEPassPluginWrapper/Dummy.swift | 4 ++ 2 files changed, 74 insertions(+) create mode 100644 Package.swift create mode 100644 Sources/WebIdEPassPluginWrapper/Dummy.swift diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..72ceab7 --- /dev/null +++ b/Package.swift @@ -0,0 +1,70 @@ +// swift-tools-version:5.3 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "WebIdEPassPlugin", + platforms: [ + .iOS(.v13) + ], + products: [ + // Products define the executables and libraries a package produces, and make them visible to other packages. + .library(name: "WebIdEPassPlugin", targets: ["WebIdEPassPluginWrapper"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + .package( + name: "WebIdPluginCore", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git", + .branch("snapshots") + ), + .package( + name: "OpenSSL", + url: "https://github.com/krzyzanowskim/OpenSSL.git", + .upToNextMajor(from: "3.6.1") + ), + .package( + name: "CryptoSwift", + url: "https://github.com/krzyzanowskim/CryptoSwift", + .upToNextMajor(from: "1.9.0") + ), + .package( + name: "ASN1", + url: "https://github.com/leif-ibsen/ASN1", + .upToNextMajor(from: "2.7.0") + ), + .package( + name: "SwiftECC", + url: "https://github.com/leif-ibsen/SwiftECC", + .upToNextMajor(from: "5.5.0") + ), + .package( + name: "Logging", + url: "https://github.com/apple/swift-log", + .upToNextMajor(from: "1.6.4") + ) + ], + targets: [ + .binaryTarget( + name: "WebIdEPassPlugin", + url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdEPassPlugin/1.0.0/WebIdEPassPlugin.framework-v1.0.0-SNAPSHOT-15.zip", + checksum: "c32f3098a3726aad19cb7a026edd46aa851954252391f77825b8d3ae7f43f724" + ), + .target( + name: "WebIdEPassPluginWrapper", + dependencies: [ + .target(name: "WebIdEPassPlugin"), + // [target dependecies here] + + .product(name: "WebIdPluginCore", package: "WebIdPluginCore"), + .product(name: "OpenSSL", package: "OpenSSL"), + .product(name: "CryptoSwift", package: "CryptoSwift"), + .product(name: "ASN1", package: "ASN1"), + .product(name: "SwiftECC", package: "SwiftECC"), + .product(name: "Logging", package: "Logging"), + ] + ) + ], + swiftLanguageVersions: [SwiftVersion.v5] +) diff --git a/Sources/WebIdEPassPluginWrapper/Dummy.swift b/Sources/WebIdEPassPluginWrapper/Dummy.swift new file mode 100644 index 0000000..7dc7342 --- /dev/null +++ b/Sources/WebIdEPassPluginWrapper/Dummy.swift @@ -0,0 +1,4 @@ +// +// Created by WebID Solutions GmbH | www.webid-solutions.de. +// See the file "LICENSE" for the full license governing this code. +//