-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update GraphViz * Update Snapshots + remove linux test files * Remove linux directive * Revert "Remove linux directive" This reverts commit 001808b. * Fix error on linux * Update package version * Update macOS CI * Fix Linux ci * Fix everything
- Loading branch information
Showing
16 changed files
with
169 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,32 @@ | ||
// swift-tools-version:5.2 | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "FirebladeGraph", | ||
platforms: [ | ||
.macOS(.v11), | ||
.iOS(.v13), | ||
], | ||
products: [ | ||
.library( | ||
name: "FirebladeGraph", | ||
targets: ["FirebladeGraph"]), | ||
targets: ["FirebladeGraph"] | ||
), | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/ctreffs/GraphViz.git", .branch("master")), | ||
.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") | ||
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.11.0"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "FirebladeGraph", | ||
dependencies: ["GraphViz", "SwiftGraph"]), | ||
dependencies: ["GraphViz", "SwiftGraph"] | ||
), | ||
.testTarget( | ||
name: "FirebladeGraphTests", | ||
dependencies: ["FirebladeGraph", "SnapshotTesting"]), | ||
dependencies: ["FirebladeGraph", "SnapshotTesting"] | ||
), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.