-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
80 lines (71 loc) · 1.97 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
[workspace]
members = [
"exc",
"exc-core",
"exc-make",
"exc-types",
"exc-service",
"exc-symbol",
"exc-okx",
"exc-binance",
"examples",
]
resolver = "2"
[workspace.package]
version = "0.7.3-nightly"
edition = "2021"
authors = ["Nouzan <clobraindie@outlook.com>"]
license = "MIT"
repository = "https://github.com/Nouzan/exc"
keywords = ["exchange", "tower"]
readme = "README.md"
description = "The abstraction layer of exchanges."
rust-version = "1.74.1"
[workspace.dependencies]
exc-symbol = { version = "0.7.3-nightly", path = "./exc-symbol", default-features = false }
exc-service = { version = "0.7.3-nightly", path = "./exc-service", default-features = false }
exc-types = { version = "0.7.3-nightly", path = "./exc-types", default-features = false }
exc-make = { version = "0.7.3-nightly", path = "./exc-make", default-features = false }
exc-core = { version = "0.7.3-nightly", path = "./exc-core", default-features = false }
exc-binance = { version = "0.7.3-nightly", path = "./exc-binance", default-features = false }
exc-okx = { version = "0.7.3-nightly", path = "./exc-okx", default-features = false }
exc = { path = "./exc", default-features = false }
indicator = "0.4.0"
positions = "0.2.1"
tracing = "0.1.37"
anyhow = "1.0.68"
thiserror = "1.0.38"
cfg-if = "1.0.0"
either = "1.8.0"
derive_more = "0.99"
# serde
serde = { version = "1.0.151", features = ["derive"] }
serde_with = "3.4.0"
serde_json = "1.0.91"
# data
time = "0.3.17"
uuid = "1.2.2"
rust_decimal = "1.27.0"
rust_decimal_macros = "1.27.0"
num-traits = "0.2.15"
# async
tower = { version = "0.4.13", default-features = false }
tower-make = "0.3.0"
tower-service = "0.3.2"
futures = "0.3.25"
futures-util = "0.3.25"
pin-project-lite = "0.2.9"
async-stream = "0.3.3"
tokio = "1.23.0"
tokio-stream = "0.1.11"
tokio-tungstenite = "0.20.1"
tokio-tower = "0.6.0"
hyper = "0.14.23"
http = "0.2.8"
# utils
humantime = "2.1.0"
# signature
hmac = "0.12.1"
sha2 = "0.10.6"
# wasm
wasm-bindgen-test = "0.3.37"