-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
44 lines (41 loc) · 1.51 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
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "EncryptingSwift",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.watchOS(.v6),
.tvOS(.v13)
],
products: [
.library(
name: "EncryptingSwift",
targets: ["EncryptingSwift"]
),
],
dependencies: [
.package(url: "https://github.com/sublabdev/common-swift.git", exact: "1.0.0"),
.package(url: "https://github.com/sublabdev/hashing-swift.git", exact: "1.0.0"),
.package(url: "https://github.com/Boilertalk/secp256k1.swift.git", exact: "0.1.4"),
.package(url: "https://github.com/pebble8888/ed25519swift.git", exact: "1.2.8"),
.package(url: "https://github.com/tesseract-one/Sr25519.swift.git", exact: "0.1.3"),
.package(url: "https://github.com/tesseract-one/Bip39.swift.git", exact: "0.1.1")
],
targets: [
.target(
name: "EncryptingSwift",
dependencies: [
.productItem(name: "CommonSwift", package: "common-swift"),
.productItem(name: "HashingSwift", package: "hashing-swift"),
.productItem(name: "secp256k1", package: "secp256k1.swift"),
.productItem(name: "ed25519swift", package: "ed25519swift"),
.productItem(name: "Sr25519", package: "Sr25519.swift"),
.productItem(name: "Bip39", package: "Bip39.swift"),
]
)
],
swiftLanguageVersions: [
.v5
]
)