-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackage.swift
142 lines (141 loc) · 4.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "aptos-sdk",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v6),
.visionOS(.v1)
],
products: [
.library(name: "Aptos", targets: ["Aptos", "APIs", "Core", "BCS", "Transactions", "Utils", "Types"]),
.library(name: "BIP32", targets: ["BIP32"]),
],
dependencies: [
.package(url: "https://github.com/attaswift/BigInt.git", from: "5.3.0"),
.package(url: "https://github.com/apple/swift-crypto.git", "1.0.0" ..< "4.0.0"),
.package(url: "https://github.com/apple/swift-openapi-urlsession.git", from: "1.0.1"),
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.4.0"),
.package(url: "https://github.com/apple/swift-docc-plugin", "1.0.0" ..< "2.0.0"),
.package(url: "https://github.com/apple/swift-http-types.git", from: "1.1.0"),
.package(url: "https://github.com/Electric-Coin-Company/MnemonicSwift.git", from: "2.2.4"),
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift.git", from: "0.17.0"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.2")
],
targets: [
// MARK: - Targets
.target(
name: "Aptos",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "CryptoSwift", package: "cryptoswift"),
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "HTTPTypes", package: "swift-http-types"),
"Clients",
"Utils",
"Types",
"Core",
"BCS",
"APIs",
"Transactions"
]
),
.target(
name: "APIs",
dependencies: [
"Types",
"Core",
"Clients",
"Utils"
]
),
.target(
name: "Clients",
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
]
),
.target(
name: "BCS",
dependencies: [
.product(name: "BigInt", package: "BigInt")
]
),
.target(
name: "Types",
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
"BCS"
]
),
.target(
name: "Core",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "MnemonicSwift", package: "MnemonicSwift"),
.product(name: "secp256k1", package: "secp256k1.swift"),
.product(name: "CryptoSwift", package: "cryptoswift"),
"Types",
"BCS",
"BIP32"
]
),
.target(
name: "Transactions",
dependencies: [
"Core",
"BCS",
"Types",
"Clients",
"APIs"
]
),
.target(
name: "BIP32",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "secp256k1", package: "secp256k1.swift")
]
),
.target(
name: "Utils",
dependencies: [
.product(name: "OpenAPIRuntime", package: "swift-openapi-runtime"),
.product(name: "OpenAPIURLSession", package: "swift-openapi-urlsession")
]
),
// MARK: - TestTargets
.testTarget(
name: "UnitTests",
dependencies: [
"Core",
"BCS",
"Transactions",
"Utils",
"Types"
]
),
.testTarget(
name: "ClientTests",
dependencies: [
"Clients"
]
),
.testTarget(
name: "E2ETests",
dependencies: [
"Aptos",
"Types",
"Clients",
"Transactions",
"APIs",
"Core",
"Utils"
]
)
],
swiftLanguageVersions: [.v5]
)