Skip to content

Commit b48e8e1

Browse files
committed
Merge #415: Fix docs for node and jsonrpc
4defca4 Add node crate crate level docs (Jamil Lambert, PhD) 8b9663b Remove doc_auto_cfg from node and jsonrpc crates (Jamil Lambert, PhD) Pull request description: The docs do not appear on crates.io for `0.10.1` because of `doc_auto_cfg`. - Remove the attribute from `node` and `jsonrpc` - Add a crate level doc for `node` which was missing. Closes #414 ACKs for top commit: tcharding: ACK 4defca4 Tree-SHA512: 6e1e013138d2012fa81c5709db8d01c68e974ada3b26ce6a0063cbc61dd0341f34a6f104cef8c14a5392135bbc15a6374daf32cae32eff49a3c1e419ff4fea7a
2 parents c77da63 + 4defca4 commit b48e8e1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

jsonrpc/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
//!
55
//! Rust support for the JSON-RPC 2.0 protocol.
66
7-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
87
// Coding conventions
98
#![warn(missing_docs)]
109

node/src/lib.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
// SPDX-License-Identifier: CC0-1.0
2+
3+
//! # Rust Bitcoin Core node harness
4+
//!
5+
//! Utilities used to spin up, configure and drive `bitcoind` instances.
6+
27
#![cfg_attr(docsrs, cfg_attr(all(), doc = include_str!("../README.md")))]
38

49
pub extern crate corepc_client as client;

0 commit comments

Comments
 (0)