hotfix 0.12.0

Buy-side FIX engine written in pure Rust
Documentation
1
2
3
4
5
6
7
use std::io;
use tokio::net::TcpStream;

pub async fn create_tcp_connection(host: &str, port: u16) -> io::Result<TcpStream> {
    let address = format!("{}:{}", host, port);
    TcpStream::connect(address).await
}