barter 0.5.3

Event-driven Rust framework for building live-trading & backtesting engines
Documentation
[package]
name = "barter"
version = "0.5.3"
authors = ["keirbailey <keirinvestment@gmail.com>"]
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/barter/"
repository = "https://gitlab.com/open-source-keir/financial-modelling/trading/barter-rs"
readme = "README.md"
description = "Event-driven Rust framework for building 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.2.3"

# Logging
log = "0.4.14"

# Async
tokio = { version = "1.12.0", features = ["full"] }
tokio-stream = { version = "0.1.7", features = ["sync"] }

# Error
thiserror = "1.0.30"

# SerDe
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"

# Persistence
redis = "0.20.0"

# Strategy
ta = "0.4.0"

# Misc
uuid = {version = "0.8", features = ["v4", "serde"]}
chrono = {version = "0.4.19", features = ["serde"]}
prettytable-rs = "0.8.0"