Keycard.swift/Package.swift

30 lines
1.1 KiB
Swift
Raw Normal View History

2019-07-10 18:32:50 +00:00
// swift-tools-version:4.2
2019-07-03 00:55:44 +00:00
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Keycard",
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "Keycard",
targets: ["Keycard"]),
],
dependencies: [
2019-07-30 11:29:32 +00:00
.package(url: "https://github.com/status-im/secp256k1.swift.git", from: "0.1.0"),
2019-07-29 08:38:48 +00:00
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.0.0"))
2019-07-03 00:55:44 +00:00
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "Keycard",
2019-07-29 08:38:48 +00:00
dependencies: ["secp256k1", "CryptoSwift"]),
2019-07-03 00:55:44 +00:00
.testTarget(
name: "KeycardTests",
dependencies: ["Keycard"]),
]
)