-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPackage.swift
40 lines (38 loc) · 1.45 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// swift-tools-version:5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "MEWwalletKit",
platforms: [
.iOS(.v11),
.macOS(.v10_13)
],
products: [
.library(
name: "MEWwalletKit",
targets: ["MEWwalletKit"]
)
],
dependencies: [
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.4.2")),
.package(url: "https://github.com/MyEtherWallet/MEW-wallet-iOS-secp256k1-package.git", .exact("1.0.2")),
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0")),
.package(url: "https://github.com/MyEtherWallet/bls-eth-swift.git", .exact("1.0.1")),
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1"),
.package(name: "MEWwalletTweetNacl", url: "https://github.com/MyEtherWallet/mew-wallet-ios-tweetnacl.git", .upToNextMajor(from: "1.0.0"))
],
targets: [
.target(
name: "MEWwalletKit",
dependencies: ["CryptoSwift", "MEW-wallet-iOS-secp256k1-package", "bls-eth-swift", "MEWwalletTweetNacl", "BigInt"],
path: "Sources"
),
.testTarget(
name: "MEWwalletKitTests",
dependencies: ["MEWwalletKit", "Quick", "Nimble"],
path: "MEWwalletKitTests/Sources"
)
],
swiftLanguageVersions: [.v4, .v4_2, .v5]
)