-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
31 lines (30 loc) · 1.17 KB
/
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.2
import PackageDescription
let package = Package(
name: "speechifyLocalize",
products: [
.library(name: "SLLib", targets: ["SLLib"])
],
dependencies: [
.package(name: "SwiftRegularExpression", url: "https://github.com/nerzh/swift-regular-expression.git", .upToNextMajor(from: "0.2.3")),
.package(name: "swift-argument-parser", url: "https://github.com/apple/swift-argument-parser", .exact("0.0.5")),
.package(name: "SwiftExtensionsPack", url: "https://github.com/nerzh/swift-extensions-pack.git", .exact("0.4.5")),
],
targets: [
.target(
name: "SLLib",
dependencies: [
.product(name: "SwiftRegularExpression", package: "SwiftRegularExpression"),
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "SwiftExtensionsPack", package: "SwiftExtensionsPack"),
]),
.target(
name: "speechifyLocalize",
dependencies: [
.target(name: "SLLib")
]),
.testTarget(
name: "speechifyLocalizeTests",
dependencies: ["speechifyLocalize"]),
]
)