-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
31 lines (30 loc) · 1013 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
28
29
30
31
// swift-tools-version:5.7.1
import PackageDescription
let package = Package(
name: "ios-tuvali-library",
platforms: [
.iOS(.v13) // Specify macOS 11.0 as the minimum required version
],
products: [
.library(
name: "ios-tuvali-library",
targets: ["ios-tuvali-library"]),
],
dependencies: [
// Define our package's dependencies
.package(url: "https://github.com/1024jp/GzipSwift", from: "5.2.0"),
.package(url: "https://github.com/ivanesik/CrcSwift.git", from: "0.0.3")
],
targets: [
.target(
name: "ios-tuvali-library",
dependencies: [
// Include GzipSwift and CrcSwift as dependencies for this target
.product(name: "Gzip", package: "GzipSwift"),
.product(name: "CrcSwift", package: "CrcSwift")
]),
.testTarget(
name: "ios-tuvali-libraryTests",
dependencies: ["ios-tuvali-library"]),
]
)