Skip to content

Commit f5a262c

Browse files
committed
Improve package manifest style and use final version of BBD 1.1.0
1 parent f3c5683 commit f5a262c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Package.swift

+6-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ let package = Package(
66
products: [
77
.library(
88
name: "SWCompression",
9-
targets: ["SWCompression"])
9+
targets: ["SWCompression"]),
1010
],
1111
dependencies: [
1212
// SWCOMP: Uncomment the line below to build swcomp example program.
13-
// .package(url: "https://github.com/jakeheis/SwiftCLI", from: "4.0.0"),
14-
.package(url: "https://github.com/tsolomko/BitByteData", from: "1.1.0-test")
13+
// .package(url: "https://github.com/jakeheis/SwiftCLI",
14+
// from: "4.0.0"),
15+
.package(url: "https://github.com/tsolomko/BitByteData",
16+
from: "1.1.0"),
1517
],
1618
targets: [
1719
// SWCOMP: Uncomment the lines below to build swcomp example program.
@@ -24,7 +26,7 @@ let package = Package(
2426
name: "SWCompression",
2527
dependencies: ["BitByteData"],
2628
path: "Sources",
27-
sources: ["Common", "7-Zip", "BZip2", "Deflate", "GZip", "LZMA", "LZMA2", "TAR", "XZ", "ZIP", "Zlib"])
29+
sources: ["Common", "7-Zip", "BZip2", "Deflate", "GZip", "LZMA", "LZMA2", "TAR", "XZ", "ZIP", "Zlib"]),
2830
],
2931
swiftLanguageVersions: [4]
3032
)

0 commit comments

Comments
 (0)