From ae3cde40e98e35214b1fc2a929a79886dfabff6d Mon Sep 17 00:00:00 2001 From: mac-mini-003 Date: Fri, 19 Apr 2024 13:58:58 +0200 Subject: [PATCH] add new version 12.0.3 --- Package.swift | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/Package.swift b/Package.swift index 51db312..d869176 100644 --- a/Package.swift +++ b/Package.swift @@ -15,21 +15,36 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. .package( - name: "WebIdDigitalSigningPlugin", - url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", - .exact("10.0.0") + name: "WebIdVideoIdentProductPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-product-plugin-spm.git", + .exact("12.0.3") ), .package( name: "WebIdVideoIdentPlugin", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm", - .exact("9.0.0") + .exact("9.0.1") + ), + .package( + name: "WebIdDigitalSigningPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", + .exact("10.0.1") + ), + .package( + name: "WebIdIosIdentScanPlugin", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm.git", + .exact("11.1.0") + ), + .package( + name: "WebIdOnServerDocumentScanner", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm.git", + .exact("11.1.0") ) ], targets: [ .binaryTarget( name: "WebIdMetaPlugin", - url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdMetaPlugin/12.0.2/WebIdMetaPlugin.framework-v12.0.2.zip", - checksum: "d4f06d5e15cb64a42ca113f65d00bc90ad4afb6d423f6d949ca9c5e4beeddcf3" + url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdMetaPlugin/12.0.3/WebIdMetaPlugin.framework-v12.0.3.zip", + checksum: "b0c321432bfba25663197dbb8171ae571fc2b737ccb7e029c5f552a0a1dc8db5" ), .target( name: "WebIdMetaPluginWrapper", @@ -37,8 +52,11 @@ let package = Package( .target(name: "WebIdMetaPlugin"), // [target dependecies here] - .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), + .product(name: "WebIdVideoIdentProductPlugin", package: "WebIdVideoIdentProductPlugin"), .product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"), + .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), + .product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"), + .product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"), ] ) ],