Closed michaelkimchi closed 3 years ago
Not sure why but it works when I reference to my local copy AND disable default features, something like this
async-sqlx-session = { path = "../../../rust/async-sqlx-session", version = "0.3.0", default-features = false, features= ["pg"] }
It wouldn't work if I use cargo version and disable default features
It works when I pointed to git
so probably just because the version is un-released
I am having a weird error.
For this
Where
pool: PgPool
I wonder if it is because I am using
tokio
while this one only supportasync-std
?https://github.com/jbr/async-sqlx-session/blob/main/Cargo.toml#L17-L27