Fix release document
Some checks failed
/ check (armv7-unknown-linux-musleabihf) (push) Waiting to run
/ check (x86_64-unknown-linux-musl) (push) Waiting to run
/ check (aarch64-unknown-linux-musl) (push) Waiting to run
/ tests (push) Has been cancelled
/ clippy (push) Has been cancelled

This commit is contained in:
asonix 2024-03-11 13:57:53 -05:00
parent 2ead3e00e2
commit dacfc43c44

View file

@ -20,13 +20,13 @@ version.
### Fix Postgres Pooling
When pict-rs 0.5.7 was built without the `tokio_unstable` flag, it would use tokio's `spwan_local`
When pict-rs 0.5.8 was built without the `tokio_unstable` flag, it would use tokio's `spwan_local`
utility from outside a LocalSet, leading to panics and timeouts. This release replaces the use of
`spawn_local` with `spawn` in that scenario.
### Fix io-uring Feature
As mentioned in the 0.5.7 release notes, io-uring is not considered to be a stable feature. However,
As mentioned in the 0.5.8 release notes, io-uring is not considered to be a stable feature. However,
0.5.8 should make it usable again. Instead of manually launching a tokio_uring runtime, pict-rs once
again relies on actix-rt to configure a System for use with io-uring.