-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (31 loc) · 924 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
34
35
36
37
[package]
name = "robinhood"
version = "0.1.1-alpha.1"
description = "Rust Wrapper for Robinhood Trade"
readme = "README.md"
authors = ["Sanko Robinson <[email protected]>"]
# homepage =
documentation = "https://docs.rs/robinhood/"
repository = "https://github.com/sanko/robinhood_rs"
license = "Artistic-2.0"
keywords = ["robinhood", "stocks"]
categories = ["api-bindings", "web-programming::http-client"]
include = [
"README.md",
"Cargo.toml",
"LICENSE",
"src/**/*"
]
[dependencies]
serde = "1"
serde_derive = "1"
serde_json = "1"
failure = "0.1.2"
reqwest = "0.8.1"
chrono = { version = "0.4", features = ["serde"] }
openssl = "0.10.48"
[target.'cfg(not(any(target_os = "windows", target_os = "macos")))'.dependencies.openssl]
version = "~0.9"
[badges]
travis-ci = { repository = "sanko/robinhood_rs", branch = "master" }
appveyor = { repository = "sanko/robinhood_rs", branch = "master", service = "github" }