-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
32 lines (30 loc) · 897 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
26
27
28
29
30
31
32
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "FirebladeGraph",
platforms: [
.macOS(.v11),
.iOS(.v13),
],
products: [
.library(
name: "FirebladeGraph",
targets: ["FirebladeGraph"]
),
],
dependencies: [
.package(url: "https://github.com/SwiftDocOrg/GraphViz.git", from: "0.4.1"),
.package(url: "https://github.com/davecom/SwiftGraph.git", from: "3.1.0"),
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.11.0"),
],
targets: [
.target(
name: "FirebladeGraph",
dependencies: ["GraphViz", "SwiftGraph"]
),
.testTarget(
name: "FirebladeGraphTests",
dependencies: ["FirebladeGraph", "SnapshotTesting"]
),
]
)