-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
35 lines (32 loc) · 1006 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "rt-pcsc-wrapper",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "RtPcscWrapper",
targets: ["RtPcscWrapper"])
],
dependencies: [
.package(url: "[email protected]:rutoken/dev/ios-projects/swift-packages/rt-pcsc.git",
revision: "d6ee84c7c1101a5be27d3efe4fe1a644da2baff9"),
.package(url: "https://github.com/SimplyDanny/SwiftLintPlugins",
from: "0.56.1")
],
targets: [
.target(
name: "RtPcscWrapper",
dependencies: [
.product(name: "RtPcsc",
package: "rt-pcsc")
],
plugins: [
.plugin(name: "SwiftLintBuildToolPlugin", package: "SwiftLintPlugins")
]
)
]
)