diff --git a/Package.swift b/Package.swift index bc59db7..af3afa1 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version: 6.2 +// swift-tools-version: 6.0 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription @@ -9,13 +9,12 @@ let package = Package( .macOS(.v12) ], products: [ - // Products define the executables and libraries a package produces, making them visible to other packages. .library( name: "Swiftmapper", - targets: ["Swiftmapper"], + targets: ["Swiftmapper"] ), .library( - name: "Libmapper", + name: "Libmapper", targets: ["libmapper"] ) ], @@ -23,11 +22,9 @@ let package = Package( .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0") ], targets: [ - // Targets are the basic building blocks of a package, defining a module or a test suite. - // Targets can depend on other targets in this package and products from dependencies. .target( name: "Swiftmapper", - dependencies: ["libmapper"], + dependencies: ["libmapper"] ), .systemLibrary( name: "libmapper", @@ -39,6 +36,6 @@ let package = Package( .testTarget( name: "SwiftmapperTests", dependencies: ["Swiftmapper"] - ), + ) ] )