Skip to content

Commit adbb9fe

Browse files
committed
Added Swift Package Manifest
1 parent 055742d commit adbb9fe

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Package.swift

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// swift-tools-version:5.0
2+
3+
//
4+
// Package.swift
5+
// CloudAccess
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: "CloudAccess",
15+
platforms: [
16+
.iOS(.v9)
17+
],
18+
products: [
19+
.library(name: "CloudAccess", targets: ["CloudAccess"])
20+
],
21+
dependencies: [
22+
.package(url: "https://github.com/cryptomator/cryptolib-swift.git", .upToNextMinor(from: "0.8.1")),
23+
.package(url: "https://github.com/groue/GRDB.swift.git", .upToNextMinor(from: "4.14.0")),
24+
.package(url: "https://github.com/google/promises.git", .upToNextMinor(from: "1.2.0"))
25+
],
26+
targets: [
27+
.target(name: "CloudAccess", dependencies: ["CryptoLib", "GRDB", "Promises"], path: "CloudAccess"),
28+
.testTarget(name: "CloudAccessTests", dependencies: ["CloudAccess"], path: "CloudAccessTests")
29+
],
30+
swiftLanguageVersions: [.v5]
31+
)

0 commit comments

Comments
 (0)