forked from barter-rs/barter-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (37 loc) · 1.14 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
39
40
41
42
43
44
45
46
[package]
name = "barter"
version = "0.8.4"
authors = ["Just A Stream <[email protected]>"]
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/barter/"
repository = "https://github.com/barter-rs/barter-rs"
readme = "README.md"
description = "Framework for building event-driven live-trading & backtesting engines"
keywords = ["trading", "backtesting", "crypto", "stocks", "investment"]
categories = ["accessibility", "simulation"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Barter Ecosystem
barter-data = "0.5.6"
barter-integration = "0.3.4"
# Logging
tracing = "0.1.36"
# Async
tokio = { version = "1.20.1", features = ["sync"] }
tokio-stream = { version = "0.1.9", features = ["sync"] }
futures = "0.3.21"
# Error
thiserror = "1.0.32"
# SerDe
serde = { version = "1.0.143", features = ["derive"] }
serde_json = "1.0.83"
# Persistence
redis = "0.21.5"
# Strategy
ta = "0.5.0"
# Misc
uuid = {version = "0.8.2", features = ["v4", "serde"]}
chrono = {version = "0.4.21", features = ["serde"]}
prettytable-rs = "0.8.0"
parking_lot = "0.12.1"