-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
43 lines (41 loc) · 968 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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "qatrade-rs"
version = "0.4.0"
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/qatrader-rs"
documentation = "https://docs.rs/qatrade-rs/"
license = "MIT OR Apache-2.0"
[dependencies]
websocket = "0.26.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
# 序列化
regex = "1.3.6"
serde_json = "1.0"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] } # 序列化
#
mongodb = "0.9.1"
bson = "0.14.0"
amiquip = "0.3"
log = "0.4"
# 配置日志
clap = "2.33"
toml = "0.5"
log4rs="0.12"
env_logger = "0.7"
lazy_static = "1.4.0"
chrono = { version = "0.4", features = ["serde"] } # datetime
qifi-rs = "0.3.0"
crossbeam-channel = "0.5.0"
actix = "0.10.0"
actix-rt = "1.0.0"