Skip to content

Commit

Permalink
Update Package manifest to use Swift 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Apr 10, 2020
1 parent e7ab113 commit 05f754b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.0
// swift-tools-version:5.2
import PackageDescription

let package = Package(
Expand All @@ -7,16 +7,16 @@ let package = Package(
products: [
.executable(name: "bartycrouch", targets: ["BartyCrouch"]),
.library(name: "BartyCrouchKit", targets: ["BartyCrouchKit"]),
.library(name: "BartyCrouchTranslator", targets: ["BartyCrouchTranslator"])
.library(name: "BartyCrouchTranslator", targets: ["BartyCrouchTranslator"]),
],
dependencies: [
.package(url: "https://github.com/Flinesoft/HandySwift.git", from: "3.2.0"),
.package(url: "https://github.com/Flinesoft/Microya.git", from: "0.1.1"),
.package(url: "https://github.com/JamitLabs/MungoHealer.git", from: "0.3.2"),
.package(url: "https://github.com/onevcat/Rainbow.git", from: "3.1.5"),
.package(url: "https://github.com/jakeheis/SwiftCLI.git", from: "6.0.1"),
.package(url: "https://github.com/Jeehut/swift-toml.git", .branch("master")),
.package(url: "https://github.com/apple/swift-syntax.git", .exact("0.50200.0"))
.package(name: "HandySwift", url: "https://github.com/Flinesoft/HandySwift.git", from: "3.2.0"),
.package(name: "Microya", url: "https://github.com/Flinesoft/Microya.git", from: "0.1.1"),
.package(name: "MungoHealer", url: "https://github.com/JamitLabs/MungoHealer.git", from: "0.3.2"),
.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.1"),
.package(name: "Toml", url: "https://github.com/Jeehut/swift-toml.git", .branch("master")),
.package(name: "SwiftSyntax", url: "https://github.com/apple/swift-syntax.git", .exact("0.50200.0")),
],
targets: [
.target(
Expand All @@ -33,7 +33,7 @@ let package = Package(
"Rainbow",
"SwiftCLI",
"SwiftSyntax",
"Toml"
"Toml",
],
path: "Sources/BartyCrouchKit"
),
Expand Down

0 comments on commit 05f754b

Please sign in to comment.