1
- // swift-tools-version:5.0
1
+ // swift-tools-version: 5.0
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
4
4
import PackageDescription
5
5
6
6
let package = Package (
7
7
name: " Web3swift " ,
8
8
platforms: [
9
- . macOS( . v10_12) , . iOS( . v11) ,
9
+ . macOS( . v10_12) , . iOS( . v11)
10
10
] ,
11
11
products: [
12
12
// Products define the executables and libraries produced by a package, and make them visible to other packages.
13
13
. library( name: " web3swift " , targets: [ " web3swift " ] ) ,
14
14
] ,
15
-
15
+
16
16
dependencies: [
17
17
. package ( url: " https://github.com/attaswift/BigInt.git " , from: " 5.3.0 " ) ,
18
18
. package ( url: " https://github.com/mxcl/PromiseKit.git " , from: " 6.15.4 " ) ,
19
19
. package ( url: " https://github.com/daltoniam/Starscream.git " , from: " 4.0.4 " ) ,
20
- . package ( url: " https://github.com/krzyzanowskim/CryptoSwift.git " , from: " 1.4.2 " ) ,
20
+ . package ( url: " https://github.com/krzyzanowskim/CryptoSwift.git " , from: " 1.4.2 " )
21
21
] ,
22
22
targets: [
23
23
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -30,6 +30,6 @@ let package = Package(
30
30
] ) ,
31
31
. testTarget(
32
32
name: " web3swiftTests " ,
33
- dependencies: [ " web3swift " ] ) ,
33
+ dependencies: [ " web3swift " ] )
34
34
]
35
35
)
0 commit comments