-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (59 loc) · 1.44 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "polycli"
version = "0.1.1"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later"
homepage = "https://github.com/d-e-s-o/polycli"
repository = "https://github.com/d-e-s-o/polycli.git"
readme = "README.md"
categories = [
"api-bindings",
"asynchronous",
"command-line-utilities",
"web-programming::http-client",
"web-programming::websocket"
]
keywords = ["cli", "finance", "async", "stocks"]
description = """
A command line tool for interacting with the Polygon API at polygon.io.
"""
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies.anyhow]
version = "1.0"
default-features = false
features = ["std"]
[dependencies.chrono]
version = "0.4"
default-features = false
[dependencies.futures]
version = "0.3"
default-features = false
[dependencies.num-decimal]
version = "0.2"
default-features = false
[dependencies.polyio]
version = "0.9"
default-features = false
[dependencies.serde_json]
version = "1.0"
default-features = false
[dependencies.structopt]
version = "0.3"
default-features = false
[dependencies.time-util]
version = "0.3"
default-features = false
features = ["chrono"]
[dependencies.tokio]
version = "1.0"
default-features = false
features = ["rt"]
[dependencies.tracing]
version = "0.1"
default-features = false
features = ["std"]
[dependencies.tracing-subscriber]
version = "0.2"
default-features = false
features = ["ansi", "chrono", "env-filter", "fmt"]