-
Notifications
You must be signed in to change notification settings - Fork 6
/
Package.swift
23 lines (21 loc) · 866 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
// 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: "Kodable",
platforms: [
.macOS(.v10_14), .iOS(.v12), .tvOS(.v12), .watchOS(.v5),
],
products: [
.library(name: "Kodable", targets: ["Kodable"]),
],
dependencies: [
.package(url: "https://github.com/mattgallagher/CwlPreconditionTesting.git", from: "2.1.0"),
.package(url: "https://github.com/rogerluan/JSEN", from: "1.1.2"),
.package(url: "https://github.com/wickwirew/Runtime", from: "2.2.2"),
],
targets: [
.target(name: "Kodable", dependencies: ["Runtime", "JSEN"], path: "Sources"),
.testTarget(name: "KodableTests", dependencies: ["CwlPreconditionTesting", "Kodable"], path: "Tests"),
]
)