forked from greymass/swift-eosio-key-encryption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
27 lines (25 loc) · 837 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.2
import PackageDescription
let package = Package(
name: "swift-eosio-key-encryption",
products: [
.library(name: "EOSIOKeyEncryption", targets: ["EOSIOKeyEncryption"]),
],
dependencies: [
.package(url: "https://github.com/greymass/swift-eosio.git", .branch("master")),
.package(url: "https://github.com/greymass/swift-scrypt.git", .branch("version-with-libscrypt-bug")),
],
targets: [
.target(
name: "EOSIOKeyEncryption",
dependencies: [
.product(name: "EOSIO", package: "swift-eosio"),
.product(name: "Scrypt", package: "swift-scrypt"),
]
),
.testTarget(
name: "EOSIOKeyEncryptionTests",
dependencies: ["EOSIOKeyEncryption"]
),
]
)