Raise minimum Swift version for async/await (#1379)
Motivation:
The latest 5.5 Swift compiler is not too pleased with some of the
`Sendable` annotations which causes the compiler to crash. This is fixed
in 5.6. Given we haven't released this to 'main' yet and Swift 5.6 has
been around for a little while we should just raise the minimum Swift
version which supports async/await.
Modifications:
- Raise the minimum Swift version for async/await to 5.6.
Result:
Compiler is happier.