Skip to content

Commit 3ec5077

Browse files
committed
added Swift Package Manifest
1 parent 1555148 commit 3ec5077

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Package.swift

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// swift-tools-version:5.0
2+
3+
//
4+
// Package.swift
5+
// CryptoLib
6+
//
7+
// Created by Philipp Schmid on 24.09.20.
8+
// Copyright © 2020 Skymatic GmbH. All rights reserved.
9+
//
10+
11+
import PackageDescription
12+
13+
let package = Package(
14+
name: "CryptoLib",
15+
platforms: [
16+
.iOS(.v9)
17+
],
18+
products: [
19+
.library(name: "CryptoLib", targets: ["CryptoLib"])
20+
],
21+
dependencies: [
22+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.0")),
23+
.package(url: "https://github.com/norio-nomura/Base32.git", .upToNextMinor(from: "0.8.0"))
24+
],
25+
targets: [
26+
.target(name: "CryptoLib", dependencies: ["CryptoSwift", "Base32"], path: "CryptoLib"),
27+
.testTarget(name: "CryptoLibTests", dependencies: ["CryptoLib"], path: "CryptoLibTests")
28+
],
29+
swiftLanguageVersions: [.v5]
30+
)

0 commit comments

Comments
 (0)