reconnecting-jsonrpsee-ws-client 0.4.2

jsonrpc-ws-client that reconnects automatically. Warning: It may lose subscription messages when reconnecting.
Documentation
use cfg_aliases::cfg_aliases;

fn main() {
    // Setup cfg aliases
    cfg_aliases! {
        native : { all(feature = "native", not(feature = "web"), not(target_arch = "wasm32")) },
        web : { all(feature = "web", target_arch = "wasm32", not(feature = "native")) },
        not_supported: { not(any(native, web)) },
    }
}