-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
27 lines (25 loc) · 896 Bytes
/
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
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "LNURLAuthKit",
platforms: [
.iOS(.v15),
.macOS(.v10_15)
],
products: [
.library(name: "LNURLAuthKit", targets: ["LNURLAuthKit"]),
.executable(name: "example", targets: ["Example"])
],
dependencies: [
.package(url: "https://github.com/GigaBitcoin/secp256k1.swift", from: "0.9.2"),
.package(url: "https://github.com/apple/swift-crypto.git", from: "2.1.0")
],
targets: [
.target(name: "LNURLAuthKit", dependencies: [
.product(name: "secp256k1", package: "secp256k1.swift"),
.product(name: "Crypto", package: "swift-crypto"),
]),
.executableTarget(name: "Example", dependencies: ["LNURLAuthKit"]),
.testTarget(name: "LNURLAuthKitTests", dependencies: ["LNURLAuthKit"]),
]
)