-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "ibtwsapi"
version = "0.1.0"
authors = ["bobbermani@gmail.com", "brett.miller@sparkstart.com"]
edition = "2018"
description = "A fork of the IBKR-API-Rust package that uses a simpler interface paradigm"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ibtwsapi"
path = "src/lib.rs"
[[bin]]
name = "ibtws_client"
path = "src/bin/manual_tests.rs"
[dependencies]
enum_index = "0.2.0"
enum_index_derive = "0.2.0"
bzip2 = "0.4"
log = "0.4.8"
log4rs = "1.2"
bytebuffer = "0.2.1"
encoding = "0.2"
num = "0.4.0"
num-derive = "0.3"
num-traits = "0.2.12"
byteorder = "1.3.4"
ascii = "1.0.0"
thiserror = "1.0.30"
from-ascii = "0.0.1"
serde = { version = "1.0", features = ["derive"] }
rust_decimal = { version = "1.17", features = ["serde-str"] }
rust_decimal_macros = "1.17"
float-cmp = "0.8.0"
chrono = "0.4.11"
strum = "0.23"
strum_macros = "0.23"