Skip to content

Commit 6a2bec9

Browse files
author
Andrew J Westlake
committed
Removed #[doc(inline)] from modules to satisfy rustc
1 parent 2794a8b commit 6a2bec9

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pyo3-asyncio"
33
description = "PyO3 utilities for Python's Asyncio library"
4-
version = "0.13.4"
4+
version = "0.13.5"
55
authors = ["Andrew J Westlake <[email protected]>"]
66
readme = "README.md"
77
keywords = ["pyo3", "python", "ffi", "async", "asyncio"]
@@ -90,7 +90,7 @@ inventory = "0.1"
9090
lazy_static = "1.4"
9191
once_cell = "1.5"
9292
pyo3 = "0.13"
93-
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.13.4", optional = true }
93+
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.13.5", optional = true }
9494

9595
[dependencies.async-std]
9696
version = "1.9"

pyo3-asyncio-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pyo3-asyncio-macros"
33
description = "Proc Macro Attributes for PyO3 Asyncio"
4-
version = "0.13.4"
4+
version = "0.13.5"
55
authors = ["Andrew J Westlake <[email protected]>"]
66
readme = "../README.md"
77
keywords = ["pyo3", "python", "ffi", "async", "asyncio"]

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,14 @@
9090
9191
/// <span class="module-item stab portability" style="display: inline; border-radius: 3px; padding: 2px; font-size: 80%; line-height: 1.2;"><code>testing</code></span> Utilities for writing PyO3 Asyncio tests
9292
#[cfg(feature = "testing")]
93-
#[doc(inline)]
9493
pub mod testing;
9594

9695
/// <span class="module-item stab portability" style="display: inline; border-radius: 3px; padding: 2px; font-size: 80%; line-height: 1.2;"><code>async-std-runtime</code></span> PyO3 Asyncio functions specific to the async-std runtime
9796
#[cfg(feature = "async-std")]
98-
#[doc(inline)]
9997
pub mod async_std;
10098

10199
/// <span class="module-item stab portability" style="display: inline; border-radius: 3px; padding: 2px; font-size: 80%; line-height: 1.2;"><code>tokio-runtime</code></span> PyO3 Asyncio functions specific to the tokio runtime
102100
#[cfg(feature = "tokio-runtime")]
103-
#[doc(inline)]
104101
pub mod tokio;
105102

106103
/// Generic implementations of PyO3 Asyncio utilities that can be used for any Rust runtime

0 commit comments

Comments
 (0)