]> Untitled Git - bdk/commitdiff
Fix cargo doc warning and missing `sqlite` feature github/release/0.12.0
authorSteve Myers <steve@notmandatory.org>
Thu, 30 Sep 2021 23:11:42 +0000 (16:11 -0700)
committerSteve Myers <steve@notmandatory.org>
Thu, 30 Sep 2021 23:11:42 +0000 (16:11 -0700)
Cargo.toml
src/blockchain/rpc.rs

index 29b5651714d4532ec21cfe724d823e0e6725aea5..dd4fc911167bc9e30b65e60d240e78de3f337d29 100644 (file)
@@ -113,6 +113,6 @@ required-features = ["compiler"]
 [workspace]
 members = ["macros"]
 [package.metadata.docs.rs]
-features = ["compiler", "electrum", "esplora", "ureq", "compact_filters", "rpc", "key-value-db", "all-keys", "verify"]
+features = ["compiler", "electrum", "esplora", "ureq", "compact_filters", "rpc", "key-value-db", "sqlite", "all-keys", "verify"]
 # defines the configuration attribute `docsrs`
 rustdoc-args = ["--cfg", "docsrs"]
index 3ac67e4dda9372b83481a1c4ef7477bd49ef6873..e88dda458b7a94a1023b200cb42805850d70f687 100644 (file)
@@ -84,7 +84,7 @@ pub struct RpcConfig {
 
 /// This struct is equivalent to [core_rpc::Auth] but it implements [serde::Serialize]
 /// To be removed once upstream equivalent is implementing Serialize (json serialization format
-/// should be the same) https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/181
+/// should be the same), see [rust-bitcoincore-rpc/pull/181](https://github.com/rust-bitcoin/rust-bitcoincore-rpc/pull/181)
 #[derive(Clone, Debug, Hash, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize)]
 #[serde(rename_all = "snake_case")]
 #[serde(untagged)]