Update compiler guards for concurrency (#1277)
Motivation:
The 'right' way to check if Swift concurrency is available is to use
`#if compiler(>=5.5) && canImport(_Concurrency)`. We are missing
currently missing the `canImport` check.
Modifications:
Add check for `canImport(_Concurrency)`.
Results:
We more correctly check whether concurrency is available.