-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPackage.swift
More file actions
42 lines (40 loc) · 1.68 KB
/
Package.swift
File metadata and controls
42 lines (40 loc) · 1.68 KB
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
41
42
// 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.1.0"),
.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"),
.package(url: "https://github.com/torusresearch/torus-utils-swift.git", from: "10.0.1"),
.package(url: "https://github.com/vapor/jwt-kit.git", from: "4.0.0"),
.package(url: "https://github.com/auth0/JWTDecode.swift.git", from: "3.2.0"),
.package(url: "https://github.com/segmentio/analytics-swift.git", from: "1.8.0")
],
targets: [
.target(
name: "Web3Auth",
dependencies: [
"KeychainSwift",
.product(name: "curveSecp256k1", package: "curvelib.swift"),
"SessionManager",
"BigInt",
.product(name: "TorusUtils", package: "torus-utils-swift"),
.product(name: "JWTDecode", package: "JWTDecode.swift"),
.product(name: "Segment", package: "analytics-swift")
]),
.testTarget(
name: "Web3AuthTests",
dependencies: ["Web3Auth", .product(name: "JWTKit", package: "jwt-kit")])
],
swiftLanguageVersions: [.v5]
)