File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 2
2
/.build
3
3
/Packages
4
4
/* .xcodeproj
5
+ Package.resolved
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:4.0
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
1
4
/*
2
5
This source file is part of the Swift.org open source project
3
6
11
14
import PackageDescription
12
15
13
16
let package = Package (
14
- name: " Dealer " ,
17
+ name: " dealer " ,
18
+ products: [
19
+ . executable( name: " Dealer " , targets: [ " Dealer " ] ) ,
20
+ ] ,
15
21
dependencies: [
16
- . Package( url: " https://github.com/apple/example-package-deckofplayingcards.git " , majorVersion: 3 ) ,
22
+ // Dependencies declare other packages that this package depends on.
23
+ . package ( url: " https://github.com/apple/example-package-deckofplayingcards.git " , from: " 3.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 which this package depends on.
28
+ . target(
29
+ name: " Dealer " ,
30
+ dependencies: [ " DeckOfPlayingCards " ] ) ,
17
31
]
18
32
)
File renamed without changes.
You can’t perform that action at this time.
0 commit comments