A transport implementation using Tokio, intended to be used with the ib_tws_core::AsyncClient
.
```rust let client = { let transport = ibtwstokio::Transport::connect( "127.0.0.1:4001".parse().unwrap(), Duration::fromsecs(5), ) .await?; ibtwscore::AsyncClient::setup(transport, 0).await? }; info!(version = client.serverversion(), "connected to client");
```