Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ jobs:
run: make test-integration

ubuntu:
name: Ubuntu
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: make test-swift

wasm:
name: SwiftWASM
name: Wasm
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
17 changes: 13 additions & 4 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.10.0"),
.package(url: "https://github.com/pointfreeco/swift-clocks", from: "0.3.0"),
.package(url: "https://github.com/pointfreeco/combine-schedulers", from: "0.11.0"),
.package(url: "https://github.com/pointfreeco/swift-clocks", from: "0.4.0"),
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "0.1.1"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.8.0"),
],
targets: [
.target(
name: "Dependencies",
dependencies: [
.product(name: "CombineSchedulers", package: "combine-schedulers"),
.product(name: "Clocks", package: "swift-clocks"),
.product(name: "CombineSchedulers", package: "combine-schedulers"),
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
]
),
Expand All @@ -47,7 +49,7 @@ let package = Package(
]
)

#if swift(>=5.6)
#if !os(Windows)
// Add the documentation compiler plugin if possible
package.dependencies.append(
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,6 @@ and articles:
Learn about "single entry point" systems, and why they are best suited for this dependencies
library, although it is possible to use the library with non-single entry point systems.

#### Miscellaneous

* **[Concurrency support][concurrency-support-article]**:
Learn about the concurrency tools that come with the library that make writing tests and
implementing dependencies easy.

## Examples

We rebuilt Apple's [Scrumdinger][scrumdinger] demo application using modern, best practices for
Expand Down
115 changes: 0 additions & 115 deletions Sources/Dependencies/ConcurrencySupport/ActorIsolated.swift

This file was deleted.

140 changes: 0 additions & 140 deletions Sources/Dependencies/ConcurrencySupport/AsyncStream.swift

This file was deleted.

Loading