diff --git a/guide/src/ecosystem/async-await.md b/guide/src/ecosystem/async-await.md index 0bf7a676..116bd872 100644 --- a/guide/src/ecosystem/async-await.md +++ b/guide/src/ecosystem/async-await.md @@ -97,7 +97,7 @@ Make your project depend on `pyo3` with the `extension-module` feature enabled a For `async-std`: ```toml [dependencies] -pyo3 = { version = "0.13", features = ["extension-module"] } +pyo3 = { version = "0.14", features = ["extension-module"] } pyo3-asyncio = { version = "0.14", features = ["async-std-runtime"] } async-std = "1.9" ``` @@ -808,4 +808,4 @@ mod tests { async fn main() -> pyo3::PyResult<()> { pyo3_asyncio::testing::main().await } -``` \ No newline at end of file +```