Skip to content

Commit

Permalink
Specify dependency product
Browse files Browse the repository at this point in the history
  • Loading branch information
krzyzanowskim committed Aug 26, 2023
1 parent 7b559ad commit da74465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ let package = Package(
targets: ["NeonPlugin"]),
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/STTextView", from: "0.8.9"),
.package(url: "https://github.com/krzyzanowskim/STTextView", from: "0.8.10"),
.package(url: "https://github.com/ChimeHQ/Neon.git", from: "0.5.1"),
.package(url: "https://github.com/alex-pinkus/tree-sitter-swift.git", branch: "with-generated-files")
],
targets: [
.target(
name: "NeonPlugin",
dependencies: [
"STTextView",
.product(name: "STTextView", package: "STTextView"),
"Neon",
.product(name: "TreeSitterSwift", package: "tree-sitter-swift")
]
Expand Down

0 comments on commit da74465

Please sign in to comment.