Skip to content

Commit

Permalink
Merge pull request #202 from wwt/swift-syntax-updates
Browse files Browse the repository at this point in the history
Upping version of SwiftSyntax in the CLI to lastest.
  • Loading branch information
Tyler-Keith-Thompson authored Apr 11, 2022
2 parents 424df33 + 5cf9630 commit 8d92e87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let package = Package(
.package(url: "https://github.com/sindresorhus/ExceptionCatcher", from: "2.0.0"),
.package(url: "https://github.com/nalexn/ViewInspector.git", from: "0.9.1"),
.package(url: "https://github.com/apple/swift-argument-parser", .exact("1.0.3")), // For pipeline
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50500.0"))
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50600.1"))
],
targets: [
.target(
Expand All @@ -53,6 +53,7 @@ let package = Package(
.target(name: "SwiftCurrent_CLI",
dependencies: [
.product(name: "SwiftSyntax", package: "swift-syntax"),
.product(name: "SwiftSyntaxParser", package: "swift-syntax"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
]),
.testTarget(
Expand Down
1 change: 1 addition & 0 deletions Sources/SwiftCurrent_CLI/Parser/File.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import Foundation
import SwiftSyntax
import SwiftSyntaxParser

/// Represents a file that has been parsed by the `IRWalker`
public struct File {
Expand Down

0 comments on commit 8d92e87

Please sign in to comment.