diff --git a/Package.swift b/Package.swift index 34652f5..0e18a21 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.7 +// swift-tools-version:5.6 import PackageDescription @@ -12,7 +12,7 @@ var package = Package( dependencies: [ .package(url: "git@github.com:55DB091A-8471-447B-8F50-5DFF4C1B14AC/Lighter.git", - branch: "develop"), + from: "1.0.0"), .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0") ], diff --git a/Package@swift-5.7.swift b/Package@swift-5.7.swift new file mode 100644 index 0000000..650cad0 --- /dev/null +++ b/Package@swift-5.7.swift @@ -0,0 +1,26 @@ +// swift-tools-version:5.7 + +import PackageDescription + +var package = Package( + name: "Northwind", + + platforms: [ .macOS(.v10_15), .iOS(.v13) ], + products: [ + .library(name: "Northwind", targets: [ "Northwind" ]) + ], + + dependencies: [ + .package(url: "git@github.com:55DB091A-8471-447B-8F50-5DFF4C1B14AC/Lighter.git", + from: "1.0.0"), + .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0") + ], + + targets: [ + .target(name : "Northwind", + dependencies : [ "Lighter" ], + path : "dist", + resources : [ .copy("northwind.db") ], + plugins : [ .plugin(name: "Enlighter", package: "Lighter") ]) + ] +)