[package] name = "twsapi" version = "0.1.0" authors = ["brett.miller@sparkstart.com"] edition = "2018" description = "Port of Interactive Broker's trading API written in Rust" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "twsapi" path = "src/lib.rs" [[bin]] name = "twsapi_client" path = "src/bin/manual_tests.rs" [dependencies] bzip2 = "0.3.3" log = "0.4.8" log4rs = "0.12.0" bytebuffer = "0.2.1" encoding = "0.2" num = "0.3.0" num-derive = "0.3" num-traits = "0.2.12" byteorder = "1.3.4" ascii = "1.0.0" from-ascii = "0.0.1" serde = { version = "1.0", features = ["derive"] } bigdecimal = "0.1.2" float-cmp = "0.8.0" chrono = "0.4.11"