11// swift-tools-version: 6.0.0
2- // The swift-tools-version declares the minimum version of Swift required to build this package.
32
43import PackageDescription
54
@@ -13,30 +12,22 @@ let package = Package(
1312 . visionOS( . v2) ,
1413 ] ,
1514 products: [
16- // Products define the executables and libraries a package produces, making them visible to other packages.
1715 . library(
1816 name: " AsyncCoreBluetooth " ,
1917 targets: [ " AsyncCoreBluetooth " ]
2018 )
2119 ] ,
2220 dependencies: [
23- // Dependencies declare other packages that this package depends on.
24- // .package(url: /* package url */, from: "1.0.0"),
2521 . package ( url: " https://github.com/meech-ward/IOS-CoreBluetooth-Mock.git " , branch: " main " ) ,
26- . package ( url: " https://github.com/apple/swift-async-algorithms " , from: " 1.0.0 " ) ,
27- . package ( url: " https://github.com/apple/swift-docc-plugin " , from: " 1.1.0 " ) ,
2822 . package (
2923 url: " https://github.com/apple/swift-collections.git " ,
3024 . upToNextMinor( from: " 1.1.0 " )
3125 ) ,
3226 ] ,
3327 targets: [
34- // Targets are the basic building blocks of a package, defining a module or a test suite.
35- // Targets can depend on other targets in this package and products from dependencies.
3628 . target(
3729 name: " AsyncCoreBluetooth " ,
3830 dependencies: [
39- . product( name: " AsyncAlgorithms " , package : " swift-async-algorithms " ) ,
4031 . product( name: " CoreBluetoothMock " , package : " IOS-CoreBluetooth-Mock " ) ,
4132 . product( name: " DequeModule " , package : " swift-collections " ) ,
4233 ]
@@ -45,7 +36,6 @@ let package = Package(
4536 name: " AsyncCoreBluetoothTests " ,
4637 dependencies: [
4738 " AsyncCoreBluetooth " ,
48- . product( name: " AsyncAlgorithms " , package : " swift-async-algorithms " ) ,
4939 . product( name: " CoreBluetoothMock " , package : " IOS-CoreBluetooth-Mock " ) ,
5040 . product( name: " DequeModule " , package : " swift-collections " ) ,
5141 ]
0 commit comments