stabilize reconnecting-rpc-client (#1803)

* stabilize reconnecting-rpc-client

* fix build

* remove missed unstable stuff
This commit is contained in:
Niklas Adolfsson
2024-10-03 20:03:16 +02:00
committed by GitHub
parent 3807b29f36
commit 8f3c0b44fb
8 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -56,8 +56,8 @@ macro_rules! cfg_jsonrpsee_web {
macro_rules! cfg_reconnecting_rpc_client {
($($item:item)*) => {
$(
#[cfg(all(feature = "unstable-reconnecting-rpc-client", any(feature = "native", feature = "web")))]
#[cfg_attr(docsrs, doc(cfg(feature = "unstable-reconnecting-rpc-client")))]
#[cfg(all(feature = "reconnecting-rpc-client", any(feature = "native", feature = "web")))]
#[cfg_attr(docsrs, doc(cfg(feature = "reconnecting-rpc-client")))]
$item
)*
}