Package.swift
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "FluxorExplorerSnapshot",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
.tvOS(.v13),
],
products: [
.library(
name: "FluxorExplorerSnapshot",
targets: ["FluxorExplorerSnapshot"]),
],
dependencies: [
.package(
url: "https://github.com/FluxorOrg/Fluxor",
from: "5.0.1"),
],
targets: [
.target(
name: "FluxorExplorerSnapshot",
dependencies: ["Fluxor"]),
.testTarget(
name: "FluxorExplorerSnapshotTests",
dependencies: ["Fluxor", "FluxorExplorerSnapshot"]),
])