/// Connect to the TCP address `localhost:1234`: /// /// ``` /// # use console_subscriber::Builder; /// # use hds_console_subscriber::Builder; /// use std::net::Ipv4Addr; /// let builder = Builder::default().server_addr((Ipv4Addr::LOCALHOST, 1234)); /// ``` /// //...
Once you enable this feature by calling the `enable_grpc_web` function, you can connect the console-subscriber gRPC server using a browser client. ## Explanation of Changes 1. Added a new feature called `grpc-web` which requires the `tonic-web` crate as a dependency. 2. A new API ...