Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e39df98a7 | ||
|
|
5a1064695a | ||
|
|
ffe12e054e | ||
|
|
7fad9730e6 | ||
|
|
906d0550b2 | ||
|
|
ec3ad04586 | ||
|
|
16e1be9ced | ||
|
|
7c4037f6df | ||
|
|
5d58e5df42 | ||
|
|
ab32d7b9dc | ||
|
|
417c9252de | ||
|
|
7d8eb300a2 | ||
|
|
24b62328bf | ||
|
|
184bf88b2d | ||
|
|
e2e2d8b055 | ||
|
|
e090775747 | ||
|
|
44d538587d |
70
Package.swift
Normal file
70
Package.swift
Normal file
@ -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.2/WebIdEPassPlugin.framework-v1.0.2-SNAPSHOT-39.zip",
|
||||
checksum: "fce563085e63f49bc48b4e249bd819a316be4e968d2e38f5c6d4a343103fc153"
|
||||
),
|
||||
.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]
|
||||
)
|
||||
4
Sources/WebIdEPassPluginWrapper/Dummy.swift
Normal file
4
Sources/WebIdEPassPluginWrapper/Dummy.swift
Normal file
@ -0,0 +1,4 @@
|
||||
//
|
||||
// Created by WebID Solutions GmbH | www.webid-solutions.de.
|
||||
// See the file "LICENSE" for the full license governing this code.
|
||||
//
|
||||
Loading…
x
Reference in New Issue
Block a user