forked from livekit/swift-krisp-noise-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.6/KrispNoiseFilter.xcframework.zip",
checksum: "a579060b69ade5f5d473f5dfa5fc429f06f4513f9ab35603287e5d1b3584d3fc"
),
.target(
name: "LiveKitKrispNoiseFilter",
dependencies: [
.product(name: "LiveKit", package: "client-sdk-swift"),
"KrispNoiseFilter",
]
),
]
)