1
- // swift-tools-version:6.0
1
+ // swift-tools-version:6.1
2
2
// The swift-tools-version declares the minimum version of Swift required to build this package.
3
3
4
4
import PackageDescription
@@ -7,14 +7,16 @@ import PackageDescription
7
7
var dependencies : [ Package . Dependency ] = [
8
8
. package ( url: " https://github.com/apple/swift-system.git " , from: " 1.0.0 " ) ,
9
9
. package ( url: " https://github.com/apple/swift-log.git " , from: " 1.5.0 " ) ,
10
- . package ( url: " https://github.com/mattt/eventsource.git " , from: " 1.1.0 " )
10
+ . package ( url: " https://github.com/mattt/eventsource.git " , from: " 1.1.0 " ) ,
11
11
]
12
12
13
13
// Target dependencies needed on all platforms
14
14
var targetDependencies : [ Target . Dependency ] = [
15
15
. product( name: " SystemPackage " , package : " swift-system " ) ,
16
16
. product( name: " Logging " , package : " swift-log " ) ,
17
- . product( name: " EventSource " , package : " eventsource " , condition: . when( platforms: [ . macOS, . iOS, . tvOS, . visionOS, . watchOS] ) )
17
+ . product(
18
+ name: " EventSource " , package : " eventsource " ,
19
+ condition: . when( platforms: [ . macOS, . iOS, . tvOS, . visionOS, . watchOS] ) ) ,
18
20
]
19
21
20
22
let package = Package (
@@ -41,7 +43,7 @@ let package = Package(
41
43
name: " MCP " ,
42
44
dependencies: targetDependencies,
43
45
swiftSettings: [
44
- . enableUpcomingFeature( " StrictConcurrency " )
46
+ . enableUpcomingFeature( " StrictConcurrency " )
45
47
]
46
48
) ,
47
49
. testTarget(
0 commit comments