Josh Brown
Josh Brown
Any update?
@simlay Thank you for your reply. I agree, it's a bit off topic but wasn't sure where to ask. I could be wrong, but I believe `@available` in ObjC is...
However, https://godbolt.org/z/s8Gzx3hME, this seems to indicate that it's compile time if I am reading the assembly right
@madsmtm I'd like to be able to do runtime checks as well. Something like from https://nshipster.com/available/: ```swift @available(iOS 13.0, *) final class CustomCompositionalLayout: UICollectionViewCompositionalLayout { … } func createLayout() ->...
Having a similar issue for an identical use case, it's not just macOS. I have issue on docker setup as well. However, my issue with postgres, `pool.close().await` never returns when...
@Yohe-Am > What I did to fix the bug was use a dedicated async close function on the Scaffold and used block scoping in order to be able to call...
Maybe I should open a new issue. I'm pretty sure @TimDeve 's solution would block [here](https://gist.github.com/TimDeve/2c392c78673506d56eeb4b10e6863ff9#file-scaffold-rs-L58) with postgres
@abonander Have you been able to find any details with the postgres issue? or is it simply unsupported because of tokio?
@abonander I can create a new issue if need be. Here's an example: ```rs use sqlx::migrate::MigrateDatabase; use sqlx::postgres::PgPoolOptions; use sqlx::{Executor, Pool, Postgres}; use std::{env, thread}; use tokio::runtime::Runtime; use uuid::Uuid; struct...
1. Could this be integrated into #79 ? 2. > There's nothing in the spec that says you need to use unsigned integers, or that you need to mod n...