-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathPackage.swift
More file actions
18 lines (17 loc) · 546 Bytes
/
Copy pathPackage.swift
File metadata and controls
18 lines (17 loc) · 546 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "CodableCSV",
platforms: [
.macOS(.v10_10), .iOS(.v11), .tvOS(.v9), .watchOS(.v2)
],
products: [
.library(name: "CodableCSV", targets: ["CodableCSV"]),
],
dependencies: [],
targets: [
.target(name: "CodableCSV", dependencies: [], path: "sources"),
.testTarget(name: "CodableCSVTests", dependencies: ["CodableCSV"], path: "tests"),
.testTarget(name: "CodableCSVBenchmarks", dependencies: ["CodableCSV"], path: "benchmarks")
]
)