-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.01 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
[package]
name = "qtmon"
license = "MIT"
edition = "2018"
version = "0.1.1"
readme = "README.md"
keywords = ["api", "finance", "stock", "questrade"]
authors = ["Curtis Jones <[email protected]>"]
homepage = "https://github.com/ikubetoomuzik/qtmon.git"
repository = "https://github.com/ikubetoomuzik/qtmon.git"
description = "An async monitor for the Questrade api, with its own small API server for your own projects."
exclude = [
"files/*",
"default/*",
]
[features]
default = ["rustbreak/ron_enc"]
yaml = ["rustbreak/yaml_enc"]
bincode = ["rustbreak/bin_enc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flexi_logger = { version = "0.16", default_features = false, features = ["colors","compress"] }
log = "0.4"
futures = "0.3"
dirs = "3.0.1"
clap = "2.33.3"
chrono = { version = "0.4", features = ["serde"] }
serde = "1.0"
ron = "0.6"
tokio = { version = "0.2", features = ["full"] }
warp = "0.2"
questrade-rs = "0.1"
reqwest = "0.10"
rustbreak = "2"