-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
38 lines (33 loc) · 1.15 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
[package]
name = "bian-rs"
version = "0.2.0"
authors = ["PrivateRookie <996514515@qq.com>"]
edition = "2018"
description = "币安 Rust async SDK | binance Rust async SDK"
license-file = "LICENSE"
readme = "README.md"
homepage = 'https://github.com/PrivateRookie/bian-rs'
repository = 'https://github.com/PrivateRookie/bian-rs'
keywords = ["Binance", "bitcoin", "websocket", "proxy"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
bian-proc = { version = "0.2", path = "./bian-proc" }
pretty_env_logger = "0.4.0"
tokio = { version = "1.2.0", features = ["full"] }
[dependencies]
reqwest = { version = "0.11.1", features = ["json"] }
hmac = "0.10.1"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.64"
serde_qs = "0.8"
url = "2.2.1"
dotenv = "0.15.0"
hex = "0.4.3"
sha2 = "0.9.3"
chrono = { version = "0.4", features = ["serde"] }
bian-proc = { version = "0.2.0", path = "./bian-proc" }
tungstenite = { git = "https://github.com/PrivateRookie/tungstenite-rs.git", branch = "proxy", version = "0.13" }
thiserror = "1"
log = "0.4.14"
[workspace]
members = [".", "./bian-proc"]