-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
66 lines (47 loc) · 1.33 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
[package]
name = "qshare"
version = "0.1.4"
edition = "2021"
repository = "https://github.com/daedalus2022/qshare"
keywords = ["stock", "quantization", "futures"]
categories = ["quantization"]
rust-version = "1.73.0"
readme = "README.md"
description = "量化数据:股票、期货等"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# 错误处理
anyhow = "1"
# 命令行解析
clap = { version = "3", features = ["derive"] }
# 命令行高亮
colored = "2.0.0"
# JSON pretty print 格式化
jsonxf = "1.1.1"
# 处理mime类型
mime = "0.3.16"
# 高性能http客户端
reqwest = { version = "0.11.14", features = ["json"] }
# 语法高亮
syntect = "5.1.0"
# 异步处理
tokio = { version = "1.25.0", features=["full"]}
## 数据读取 https://pola-rs.github.io/polars/user-guide/installation/#rust
polars = { version = "0.27.2", features = ["lazy", "temporal", "describe", "json", "parquet", "dtype-datetime", "csv-file"] }
## json
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.93"
## 特征异步
async-trait = "0.1.74"
# log
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
# env
dotenvy = "0.15"
# md5
md5 = "0.7.0"
# csv
csv = { version = "1.1", features = [] }
# 进度条
pbr = "1.0.3"