You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Rust](http://www.rust-lang.org/) bindings for [Python](https://www.python.org/)'s [Asyncio Library](https://docs.python.org/3/library/asyncio.html). This crate facilitates interactions between Rust Futures and Python Coroutines and manages the lifecycle of their corresponding event loops.
9
9
@@ -183,4 +183,9 @@ Type "help", "copyright", "credits" or "license" for more information.
183
183
184
184
> Note that we are using `EventLoop.run_until_complete` here instead of the newer `asyncio.run`. That is because `asyncio.run` will set up its own internal event loop that `pyo3_asyncio` will not be aware of. For this reason, running `pyo3_asyncio` conversions through `asyncio.run` is not currently supported.
185
185
>
186
-
> This restriction may be lifted in a future release.
186
+
> This restriction may be lifted in a future release.
187
+
188
+
## MSRV
189
+
Currently the MSRV for this library is 1.46.0, _but_ if you don't need to use the `async-std-runtime`
190
+
feature, you can use rust 1.45.0.
191
+
> `async-std` depends on `socket2` which fails to compile under 1.45.0.
0 commit comments