-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
57 lines (44 loc) · 927 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "bybit"
version = "0.0.1"
description = ""
repository = "https://github.com/wassup-/bybit-rs"
authors = ["Tom Knapen"]
edition = "2018"
license = "MIT"
include = [
"Cargo.toml",
"LICENSE",
"src/**/*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-util = "*"
tungstenite = "0.14"
serde_json = "*"
url = "*"
thiserror = "^1"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.serde]
version = "*"
features = ["derive"]
[dependencies.serde_urlencoded]
version = "*"
[dependencies.hmac-sha256]
version = "0.1"
[dependencies.hex]
version = "0.4"
[dependencies.chrono]
version = "0.4"
[dependencies.itertools]
version = "0.10"
[dependencies.async-trait]
version = "0.1"
[dependencies.tokio-tungstenite]
version = "0.15"
features = ["native-tls"]