Skip to content

Commit

Permalink
Updates SwiftSyntax to work with Swift 5.6 & Xcode 13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FlineDevPublic committed Mar 18, 2022
1 parent 26b6eba commit 4ac0804
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
.package(name: "Rainbow", url: "https://github.com/onevcat/Rainbow.git", from: "3.1.5"),
.package(name: "SwiftCLI", url: "https://github.com/jakeheis/SwiftCLI.git", from: "6.0.3"),
.package(name: "Toml", url: "https://github.com/jdfergason/swift-toml.git", .branch("master")),
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", from: "0.50500.0"),
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50600.1")),

// A collection of tools for debugging, diffing, and testing your application's data structures.
.package(url: "https://github.com/pointfreeco/swift-custom-dump.git", from: "0.3.0"),
Expand All @@ -36,7 +36,8 @@ let package = Package(
"MungoHealer",
"Rainbow",
"SwiftCLI",
"SwiftSyntax",
.product(name: "SwiftSyntaxParser", package: "swift-syntax"),
.product(name: "SwiftSyntax", package: "swift-syntax"),
"BartyCrouchUtility",
]
),
Expand Down
1 change: 1 addition & 0 deletions Sources/BartyCrouchKit/FileHandling/CodeFileHandler.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Foundation
import SwiftSyntax
import SwiftSyntaxParser
import BartyCrouchUtility

final class CodeFileHandler {
Expand Down

0 comments on commit 4ac0804

Please sign in to comment.