We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12a08fd commit 64c8d33Copy full SHA for 64c8d33
Cargo.toml
@@ -84,8 +84,8 @@ features = [
84
"r2d2",
85
]
86
no-default-features = true
87
-rustc-args = ["--cfg", "doc_cfg"]
88
-rustdoc-args = ["--cfg", "doc_cfg"]
+rustc-args = ["--cfg", "docsrs"]
+rustdoc-args = ["--cfg", "docsrs"]
89
90
[workspace]
91
members = [
src/lib.rs
@@ -1,4 +1,4 @@
1
-#![cfg_attr(doc_cfg, feature(doc_cfg, doc_auto_cfg))]
+#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
2
//! Diesel-async provides async variants of diesel related query functionality
3
//!
4
//! diesel-async is an extension to diesel itself. It is designed to be used together
0 commit comments