-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
31 lines (29 loc) · 923 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
29
30
31
[package]
name = "qamarket-rs"
version = "0.4.0"
authors = ["yutiansut <yutiansut@qq.com>"]
edition = "2018"
description = "Quantitative Financial Framework"
repository = "https://github.com/yutiansut/qamarket-rs"
readme = "README.md"
documentation = "http://doc.yutiansut.com"
keywords = ["amqp", "rabbitmq", "quantaxis", "quant"]
categories = ["science"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mongodb = "0.3.11" # mongodb
amiquip = "0.3"
chrono = { version = "0.4", features = ["serde"] } # datetime
serde_json = "1.0"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] } # 序列化
rayon = "1.1" # 多线程
ndarray = "0.13.0" # ndarray
crossbeam = "0.7"
crossbeam-channel = "0.4"
crossbeam-utils = "0.7"
uuid = { version = "0.8", features = ["serde", "v4"] }
lazy_static = "1.4.0"
clap = "2.33"
toml = "0.5"