Skip to content

Commit c039884

Browse files
committed
Update reamde, example, and package
1 parent bda8b07 commit c039884

6 files changed

Lines changed: 226 additions & 153 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
run: swift build
2222

2323
- name: Test
24-
run: swift test
24+
run: swift test --no-parallel

.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

Package.resolved

Lines changed: 1 addition & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// swift-tools-version: 6.0.0
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
32

43
import 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

Comments
 (0)