-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPackage.swift
30 lines (28 loc) · 1 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Web3Auth",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "Web3Auth",
targets: ["Web3Auth"])
],
dependencies: [
.package(name: "KeychainSwift", url: "https://github.com/evgenyneu/keychain-swift.git", from: "20.0.0"),
.package(name:"SessionManager",url: "https://github.com/Web3Auth/session-manager-swift.git",from: "6.0.2"),
.package(name: "curvelib.swift", url: "https://github.com/tkey/curvelib.swift", from: "2.0.0"),
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
],
targets: [
.target(
name: "Web3Auth",
dependencies: ["KeychainSwift", .product(name: "curveSecp256k1", package: "curvelib.swift"), "SessionManager", "BigInt"]),
.testTarget(
name: "Web3AuthTests",
dependencies: ["Web3Auth"])
],
swiftLanguageVersions: [.v5]
)