-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
100 lines (73 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[package]
name = "qlib_data"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/daedalus2022/qlib_data"
keywords = ["stock", "quantization", "futures", "qlib", "ai"]
categories = ["quantization"]
rust-version = "1.73.0"
readme = "README.md"
description = "qlib数据处理"
license = "Apache-2.0"
[[example]]
name = "cli"
# 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"
# 异步处理
futures = "0.3"
tokio = { version = "1.33.0", features = ["full"] }
async-std = "1.12.0"
## 数据读取 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"
## pickle 序列化
serde-pickle = "1.1.1"
## 特征异步
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"
# 量化数据源
qshare="0.1.4"
# 模型训练
tch = "0.14.0"
nn = "0.1.6"
## ml
##
linfa = "0.7.0"
linfa-nn="0.7.0"
linfa-elasticnet = "0.7.0"
linfa-logistic = "0.7.0"
ndarray = "0.15"
#rand = "0.8.5"
#num-traits = "0.2.17"
linfa-datasets = { version = "0.7", features = ["diabetes"] }
#ndarray = "0.15"
#ndarray-nn = "0.5"
#ndarray-rand = "0.14.0"
#linfa = "0.7.0"
#linfa-nn = "0.7.0"