File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1- // swift-tools-version: 6.1
1+ // swift-tools-version: 6
22// The swift-tools-version declares the minimum version of Swift required to build this package.
33
44import PackageDescription
Original file line number Diff line number Diff line change 1+ // swift-tools-version: 5.9
2+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+ import PackageDescription
5+
6+ let package = Package (
7+ name: " MultiPicker " ,
8+ platforms: [
9+ . iOS( . v16) ,
10+ . macOS( . v13) ,
11+ . watchOS( . v9)
12+ ] ,
13+ products: [
14+ // Products define the executables and libraries a package produces, and make them visible to other packages.
15+ . library(
16+ name: " MultiPicker " ,
17+ targets: [ " MultiPicker " ] ) ,
18+ ] ,
19+ dependencies: [
20+ . package ( url: " https://github.com/toastersocks/Helpers.git " , from: " 0.0.0 " ) ,
21+ . package ( url: " https://github.com/toastersocks/Flow.git " , from: " 1.2.3 " ) ,
22+ // Dependencies declare other packages that this package depends on.
23+ // .package(url: /* package url */, from: "1.0.0"),
24+ ] ,
25+ targets: [
26+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
27+ // Targets can depend on other targets in this package, and on products in packages this package depends on.
28+ . target(
29+ name: " MultiPicker " ,
30+ dependencies: [ " Helpers " , " Flow " ] ) ,
31+ . testTarget(
32+ name: " MultiPickerTests " ,
33+ dependencies: [ " MultiPicker " ] ) ,
34+ ]
35+ )
You can’t perform that action at this time.
0 commit comments