-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
32 lines (29 loc) · 1.13 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
// swift-tools-version: 5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Web3SwiftMpcProvider",
platforms: [.iOS(.v13), .macOS(.v11)],
products: [
.library(
name: "Web3SwiftMpcProvider",
targets: ["Web3SwiftMpcProvider"]),
],
dependencies: [
.package(url: "https://github.com/argentlabs/web3.swift", from:"1.6.0"),
.package(url: "https://github.com/torusresearch/tss-client-swift.git", from: "4.0.0"),
.package(url: "https://github.com/tkey/curvelib.swift", from: "1.0.1"),
],
targets: [
.target(
name: "Web3SwiftMpcProvider",
dependencies: ["web3.swift", .product(name: "tssClientSwift", package: "tss-client-swift"), .product(name: "curveSecp256k1", package: "curvelib.swift")],
path: "Sources/Web3SwiftMpcProvider"
),
.testTarget(
name: "Web3SwiftMpcProviderTests",
dependencies: ["Web3SwiftMpcProvider"],
path: "Tests"),
],
swiftLanguageVersions: [.v5]
)