File tree Expand file tree Collapse file tree
Sources/ElevenLabs/Internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66xcuserdata /
77xcshareddata /
88Package.resolved
9+ * .bak
Original file line number Diff line number Diff line change 1+ // swift-tools-version:6.2
2+ // Swift 6.2+ (Xcode 26.0+)
3+
4+ import PackageDescription
5+
6+ let package = Package (
7+ name: " ElevenLabs " ,
8+ platforms: [
9+ . iOS( . v13) ,
10+ . macOS( . v10_15) ,
11+ . macCatalyst( . v14) ,
12+ . visionOS( . v26) ,
13+ . tvOS( . v17)
14+ ] ,
15+ products: [
16+ . library(
17+ name: " ElevenLabs " ,
18+ targets: [ " ElevenLabs " ]
19+ )
20+ ] ,
21+ dependencies: [
22+ . package ( url: " https://github.com/livekit/client-sdk-swift.git " , from: " 2.10.0 " )
23+ ] ,
24+ targets: [
25+ . target(
26+ name: " ElevenLabs " ,
27+ dependencies: [
28+ . product( name: " LiveKit " , package : " client-sdk-swift " )
29+ ] ,
30+ // TODO: Re-enable StrictConcurrency once LiveKit depends on a JWTKit
31+ // release where Sendable annotations are available (4.13.x patch or 5.x).
32+ // Tracking: https://github.com/livekit/client-sdk-swift/issues/846
33+ exclude: [
34+ " Internal/Protocol/schemas/agent.asyncapi.yaml "
35+ ] ,
36+ resources: [
37+ . process( " PrivacyInfo.xcprivacy " )
38+ ]
39+ ) ,
40+ . testTarget(
41+ name: " ElevenLabsTests " ,
42+ dependencies: [
43+ " ElevenLabs " ,
44+ . product( name: " LiveKit " , package : " client-sdk-swift " )
45+ ] ,
46+ resources: [
47+ . copy( " Resources/silence.mp3 " ) ,
48+ . copy( " Resources/spoken-audio.mp3 " )
49+ ]
50+ )
51+ ] ,
52+ swiftLanguageModes: [ . v5]
53+ )
Original file line number Diff line number Diff line change 33import Foundation
44
55enum SDKVersion {
6- static let version = " 3.1.4 "
6+ static let version = " 3.1.5 "
77}
You can’t perform that action at this time.
0 commit comments