EitherSwift/Package.swift

32 lines
619 B
Swift

// swift-tools-version: 5.6
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "EitherSwift",
products: [
.library(
name: "EitherSwift",
type: .dynamic,
targets: ["EitherSwift"]
),
],
dependencies: [
],
targets: [
.target(
name: "EitherSwift",
dependencies: [
]
),
.testTarget(
name: "EitherSwiftTests",
dependencies: ["EitherSwift"]
),
]
)