-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (40 loc) · 1.22 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
[[bin]]
name = "crypto-candlesticks-rust"
[[test]]
name = "crypto-candlesticks-rust-test"
path = "./test/test_config.rs"
[package]
authors = ["Pedro Torres <[email protected]>"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
description = "Download candlestick data fast & easy for analysis"
documentation = "https://docs.rs/crate/crypto-candlesticks-rust/"
edition = "2021"
exclude = [
"examples/",
"hex/",
"media/crypto-candlestick-rust.mp4",
"media/crypto-candlestick-rust.png",
"scripts/",
".github",
]
keywords = ["cryptocurrency", "candlesticks", "download", "data", "ohlc"]
license = "GPL-3.0-or-later"
name = "crypto-candlesticks-rust"
readme = "README.md"
repository = "https://github.com/Corfucinas/crypto-candlesticks-rust"
version = "0.1.5"
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z' # Optimize for size.
panic = "abort"
strip = "symbols"
[dependencies]
chrono = "0.4.19"
clap = {version = "3.0.7", features = ["env"]}
colorful = "0.2.1"
comfy-table = "6.0.0"
reqwest = {version = "0.11.9", features = ["blocking", "json"]}
rusqlite = {version = "0.27.0", features = ["bundled"]}
serde = {version = "1.0.133", features = ["derive"]}
simple_excel_writer = "0.2.0"