Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
workaround SPM local deps limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
tayloraswift committed Aug 13, 2022
1 parent 99168f9 commit e2db435
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
],
dependencies:
[
.package(name: "swift-balanced-trees", path: "./swift-balanced-trees"),
// .package(name: "swift-balanced-trees", path: "./swift-balanced-trees"),

.package(url: "https://github.com/kelvin13/swift-grammar", exact: "0.1.5"),
.package(url: "https://github.com/kelvin13/swift-json", branch: "master"),
Expand All @@ -37,6 +37,8 @@ let package = Package(
],
targets:
[
.target(name: "Forest", path: "swift-balanced-trees/Sources/Forest"),

.target(name: "Versions",
dependencies:
[
Expand All @@ -57,7 +59,8 @@ let package = Package(
[
.target(name: "SymbolGraphs"),

.product(name: "Forest", package: "swift-balanced-trees"),
.target(name: "Forest"),
//.product(name: "Forest", package: "swift-balanced-trees"),

.product(name: "DOM", package: "swift-dom"),
.product(name: "JSON", package: "swift-json"),
Expand Down

0 comments on commit e2db435

Please sign in to comment.