-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
28 lines (26 loc) · 804 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
[package]
name = "ro-soku"
version = "0.1.2"
authors = ["mirumi <[email protected]>"]
edition = "2021"
description = "Retrieve OHLCV ro-soku (means a candle in Japanese) from any exchange🕯️"
readme = "README.md"
repository = "https://github.com/mirumirumi/ro-soku"
license = "MIT"
keywords = ["crypto", "cryptocurrency", "exchange", "trading-bot"]
[dependencies]
anyhow = "1.0.70"
chrono = "0.4.24"
chrono-tz = "0.8.1"
clap = { version = "4.2.2", features = ["derive"] }
console = "0.15.5"
dialoguer = "0.10.4"
rand = "0.8.5"
regex = "1.7.3"
reqwest = { version = "0.11.16", features = ["blocking", "json"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.94"
strum = { version = "0.24.1", features = ["derive"] }
thiserror = "1.0.40"
[dev-dependencies]
rstest = "0.17.0"