85 lines
2.9 KiB
Swift
85 lines
2.9 KiB
Swift
// swift-tools-version:5.6
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "ZcashLightClientKit",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "ZcashLightClientKit",
|
|
targets: ["ZcashLightClientKit"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.14.0"),
|
|
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1"),
|
|
.package(url: "https://github.com/zcash-hackworks/zcash-light-client-ffi", revision: "c7cdcb8d734c9f22644e6255dfd3cd772e534251")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "ZcashLightClientKit",
|
|
dependencies: [
|
|
.product(name: "SQLite", package: "SQLite.swift"),
|
|
.product(name: "GRPC", package: "grpc-swift"),
|
|
.product(name: "libzcashlc", package: "zcash-light-client-ffi")
|
|
],
|
|
exclude: [
|
|
"Modules/Service/GRPC/ProtoBuf/proto/compact_formats.proto",
|
|
"Modules/Service/GRPC/ProtoBuf/proto/service.proto",
|
|
"Error/Sourcery/"
|
|
],
|
|
resources: [
|
|
.copy("Resources/checkpoints")
|
|
]
|
|
),
|
|
.target(
|
|
name: "TestUtils",
|
|
dependencies: ["ZcashLightClientKit"],
|
|
path: "Tests/TestUtils",
|
|
exclude: [
|
|
"proto/darkside.proto",
|
|
"Sourcery/AutoMockable.stencil",
|
|
"Sourcery/generateMocks.sh"
|
|
],
|
|
resources: [
|
|
.copy("Resources/test_data.db"),
|
|
.copy("Resources/cache.db"),
|
|
.copy("Resources/darkside_caches.db"),
|
|
.copy("Resources/darkside_data.db"),
|
|
.copy("Resources/sandblasted_mainnet_block.json"),
|
|
.copy("Resources/txBase64String.txt"),
|
|
.copy("Resources/txFromAndroidSDK.txt"),
|
|
.copy("Resources/integerOverflowJSON.json"),
|
|
.copy("Resources/sapling-spend.params"),
|
|
.copy("Resources/sapling-output.params")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "OfflineTests",
|
|
dependencies: ["ZcashLightClientKit", "TestUtils"]
|
|
),
|
|
.testTarget(
|
|
name: "NetworkTests",
|
|
dependencies: ["ZcashLightClientKit", "TestUtils"]
|
|
),
|
|
.testTarget(
|
|
name: "DarksideTests",
|
|
dependencies: ["ZcashLightClientKit", "TestUtils"]
|
|
),
|
|
.testTarget(
|
|
name: "AliasDarksideTests",
|
|
dependencies: ["ZcashLightClientKit", "TestUtils"],
|
|
exclude: [
|
|
"scripts/"
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "PerformanceTests",
|
|
dependencies: ["ZcashLightClientKit", "TestUtils"]
|
|
)
|
|
]
|
|
)
|