forked from fabianboesiger/ftx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 1.16 KB
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
[package]
authors = ["Fabian Bösiger <boesiger.fabian@outlook.com>"]
categories = ["api-bindings"]
description = "Unofficial API Binding for the FTX Exchange."
edition = "2018"
keywords = ["exchange", "trading", "crypto", "market"]
license = "MIT OR Apache-2.0"
name = "ftx"
readme = "README.md"
repository = "https://github.com/fabianboesiger/ftx"
version = "0.4.3"
[dependencies]
chrono = {version = "^0.4.19", features = ["serde"]}
crc32fast = "^1.2.1"
dotenv = "^0.15.0"
futures = {version = "0.3", optional = true}
hex = "^0.4.3"
hmac-sha256 = "^0.1.7"
http = "0.2"
log = "^0.4.14"
reqwest = {version = "^0.11.3", features = ["json"]}
rust_decimal = "^1.13.0"
rust_decimal_macros = "^1.14.1"
serde = {version = "^1.0.125", features = ["derive"]}
serde_json = "^1.0.64"
serde_qs = "0.8"
serde_with = {version = "^1.9.1", features = ["chrono"]}
thiserror = "1"
tokio = {version = "^1.5.0", features = ["macros"], optional = true}
tokio-tungstenite = {version = "^0.14.0", features = ["native-tls"], optional = true}
[dev-dependencies]
env_logger = "^0.9.0"
tokio = {version = "^1.5.0", features = ["full"]}
[features]
default = ["ws"]
ws = ["tokio-tungstenite", "tokio", "futures"]