pointfreeco / swift-concurrency-extras

Useful, testable Swift concurrency.
MIT License
343 stars 23 forks source link

Add Wasm/Windows support/CI #1

Closed stephencelis closed 1 year ago

stephencelis commented 1 year ago

The dlsym tricks we do don't work on Wasm or Windows.

For Wasm we are in a single threaded mode anyway, so I think we could make withMainSerialExecutor a no-op on that platform in the future.

For Windows we'll need more explicit support using the appropriate platform APIs.