forked from domambia/bybit_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (55 loc) · 1.28 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
[package]
name = "bybit_rs"
version = "0.1.6"
authors = [
"Omambia Dauglous <omambiadauglous@gmail.com>",
"NGENI Labs <https://ngeni.io>",
"Dennis Mwangi <dennismwangidev@gmail.com>",
]
edition = "2018"
rust-version = "1.67"
description = "Fork of the Official Python3 API connector for Bybit's HTTP (bybit) and WebSockets APIs to rust"
documentation = "https://docs.rs/bybit_rs"
readme = "README.md"
homepage = "https://docs.rs/bybit_rs"
license = "MIT"
keywords = ["rust", "bybit_rs", "pybit_rust"]
categories = ["development-tools::cargo-plugins"]
repository = "https://github.com/domambia/bybit_rs"
exclude = ["example_folder"]
[lib]
name = "bybit_rs"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.0.1", features = ["full"] }
futures = "0.3.5"
thiserror = "1.0.13"
#JSON libs
serde_json = "1.0.57"
serde = "1.0.104"
serde_derive = "1.0.104"
#Request
reqwest = { version = "0.11.14", features = [
"json",
"default",
"socks",
"blocking",
"stream",
] }
http = "0.2.9"
# encryption
sha2 = "0.9.3"
hmac = "0.10.1"
hex = "0.4.3"
regex = "1.5"
async-trait = "0.1"
openssl = "0.10.56"
url = "2.2.0"
dotenv = "0.15.0"
ring = "0.16.20"
serde_urlencoded = "0.7.1"
once_cell = "1.18.0"
hmac-sha256 = "1.1.7"
[[bin]]
name = "run_test"
path = "example/bybit_test.rs"