Skip to content

Commit 8f73915

Browse files
committed
Use Swift 5.2 Package.swift
On our quest to max WET.
1 parent 2bdaaf1 commit 8f73915

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Package.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.0
1+
// swift-tools-version:5.2
22

33
import PackageDescription
44

@@ -12,15 +12,17 @@ let package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Macro-swift/Macro.git",
15-
from: "0.6.2"),
15+
from: "0.8.11"),
1616
.package(url: "https://github.com/Macro-swift/MacroExpress.git",
17-
from: "0.6.0"),
17+
from: "0.8.8"),
1818
.package(url: "https://github.com/AlwaysRightInstitute/SwiftXmlRpc.git",
1919
from: "0.8.6")
2020
],
2121

2222
targets: [
23-
.target(name: "MacroXmlRpc",
24-
dependencies: [ "Macro", "MacroExpress", "XmlRpc" ])
23+
.target(name: "MacroXmlRpc", dependencies: [
24+
"Macro", "MacroExpress",
25+
.product(name: "XmlRpc", package: "SwiftXmlRpc")
26+
])
2527
]
2628
)

0 commit comments

Comments
 (0)