diff --git a/jsonrpc/src/lib.rs b/jsonrpc/src/lib.rs index 473eba27..ee2953ee 100644 --- a/jsonrpc/src/lib.rs +++ b/jsonrpc/src/lib.rs @@ -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)] diff --git a/node/src/lib.rs b/node/src/lib.rs index 6d733b45..d678c2a5 100644 --- a/node/src/lib.rs +++ b/node/src/lib.rs @@ -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;