Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion jsonrpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
//!
//! Rust support for the JSON-RPC 2.0 protocol.

#![cfg_attr(docsrs, feature(doc_auto_cfg))]
// Coding conventions
#![warn(missing_docs)]

Expand Down
7 changes: 6 additions & 1 deletion node/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
// SPDX-License-Identifier: CC0-1.0

//! # Rust Bitcoin Core node harness
//!
//! Utilities used to spin up, configure and drive `bitcoind` instances.

#![cfg_attr(docsrs, cfg_attr(all(), doc = include_str!("../README.md")))]

pub extern crate corepc_client as client;
Expand Down