IB TWS Tokio

crates.io docs.rs LGPL 3.0

An IB TWS API client implementation using the Tokio runtime.

Usage

```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");

```