-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "backtester"
version = "0.1.0"
authors = ["Sebastian Rollen <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
bdays = "0.1"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.6"
csv = "1.1.6"
futures = { version = "0.3"}
indicatif = "0.16"
lazy_static = "1.4"
num-traits = "0.2"
rust_decimal = "1.16"
polygon = { git = "ssh://[email protected]/Overmuse/polygon", tag = "v0.14.0", default-features = false, features = ["rest"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.73"
serde_with = { version = "1.11", features = ["chrono"] }
stream-flatten-iters = { version = "0.2" }
thiserror = "1.0"
tokio = { version = "1.0", features = ["sync"] }
tracing = "0.1.29"
uuid = { version = "0.8", features = ["v4", "serde"] }
[[example]]
name = "random_trades"
[dev-dependencies]
anyhow = "1.0"
dotenv = "0.15"
rand = "0.8"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.2"