-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Package.swift
25 lines (23 loc) · 895 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
// 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: "ResponderChain",
platforms: [
.macOS(.v10_13),
.iOS(.v11),
.tvOS(.v11)
],
products: [
.library(name: "ResponderChain", targets: ["ResponderChain"]),
],
dependencies: [
.package(name: "Introspect", url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.2"),
.package(url: "https://github.com/Amzd/SwizzleSwift", from: "1.0.0"),
.package(url: "https://github.com/nalexn/ViewInspector", from: "0.6.0"),
],
targets: [
.target(name: "ResponderChain", dependencies: ["Introspect", "SwizzleSwift"]),
.testTarget(name: "ResponderChainTests", dependencies: ["ResponderChain", "ViewInspector"]),
]
)