-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
33 lines (29 loc) · 986 Bytes
/
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
[package]
name = "alpaca-finance"
version = "0.2.1"
authors = [ "Fred Briden <[email protected]>" ]
license = "MIT"
description = "An API to interact with alpaca.markets"
keywords = [ "alpaca", "finance", "stocks" ]
readme = "README.md"
edition = "2018"
include = [ "Cargo.toml", "LICENSE", "README.md", "src/**/*.rs" ]
repository = "https://github.com/fbriden/alpaca-finance-rs"
homepage = "https://github.com/fbriden/alpaca-finance-rs"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
futures-util = "0.3"
market-finance = { version = "0.1" }
reqwest = { version = "0.10", features = [ "json" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
snafu = "0.6"
tokio = { version = "0.2", default-features = false, features = [ "rt-threaded", "macros" ]}
tokio-tungstenite = { version = "0.10", features = [ "tls" ] }
tungstenite = "0.10"
url = "2.1"
[dev-dependencies]
handlebars = "3.0"
mockito = "0.25"
tokio-test = "0.2"