forked from yutiansut/qaaccount-rs
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
50 lines (44 loc) · 1.09 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
[package]
name = "quantaxis-rs"
version = "0.3.4"
description = 'quantaxis in rust'
authors = ["yutiansut <[email protected]>"]
edition = "2018"
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
readme = "README.md"
categories = ["science", "algorithms"]
homepage = "https://github.com/yutiansut"
repository = "https://github.com/yutiansut/quantaxis-rs"
documentation = "https://docs.rs/quantaxis-rs/"
license = "MIT OR Apache-2.0"
[dependencies]
serde_json = "1.0.61"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] } # 序列化
csv = "1.1.3"
stopwatch = "0.0.7"
num = "0.2.0"
num-traits = "0.2.6"
rayon = "1.1" # 多线程
ndarray = "0.13.0" # ndarray
ndarray-csv = "0.4"
log = "0.4"
error-chain = "0.12.1"
regex = "1"
uuid = { version = "0.8", features = ["serde", "v1", "v4"] }
float-cmp = "0.4.0"
bencher = "0.1.5"
rand = "0.6.5"
qifi-rs ="0.3.0"
chrono = "0.4.11"
tokio = { version = "0.2.18", features = ["full"] }
tokio-util = { version = "0.3.0", features = ["full"] }
[dev-dependencies]
[[bench]]
name = "indicators"
path = "benches/indicators.rs"
harness = false