-
Notifications
You must be signed in to change notification settings - Fork 4
/
Package.swift
35 lines (33 loc) · 999 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
32
33
34
35
// swift-tools-version:5.7
// (Xcode14.0+)
import PackageDescription
let package = Package(
name: "LiveKitKrispNoiseFilter",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
],
products: [
.library(
name: "LiveKitKrispNoiseFilter",
targets: ["LiveKitKrispNoiseFilter"]
),
],
dependencies: [
.package(url: "https://github.com/livekit/client-sdk-swift.git", from: "2.0.13"),
],
targets: [
.binaryTarget(
name: "KrispNoiseFilter",
url: "https://github.com/livekit/swift-krisp-noise-filter/releases/download/0.0.7/KrispNoiseFilter.xcframework.zip",
checksum: "2d8446bdd0a0fabc47f9739c4eefd980959ba16683a9b01b1feb7e34c420dae7"
),
.target(
name: "LiveKitKrispNoiseFilter",
dependencies: [
.product(name: "LiveKit", package: "client-sdk-swift"),
"KrispNoiseFilter",
]
),
]
)