-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCargo.toml
37 lines (34 loc) · 1.08 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
[package]
name = "coinbase-pro-rs"
version = "0.8.1"
authors = ["ae <inv2004@gmail.com>"]
repository = "https://github.com/inv2004/coinbase-pro-rs"
description = "Coinbase pro client for Rust"
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
categories = [ "api-bindings", "cryptography::cryptocurrencies" ]
keywords = [ "exchange", "coinbase", "bitcoin", "websocket" ]
[features]
latency-tests = []
[dependencies]
async-trait = "0.1.42"
base64 = "0.13.0"
chrono = { version = "0.4.9", features = [ "serde" ] }
futures = { version = "0.3.8" }
futures-util = { version = "0.3.8", features = ["compat"] }
hmac = "0.10.1"
hyper = { version = "0.14.2", features = ["stream", "client", "http1"] }
hyper-tls = "0.5.0"
log = "0.4.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.9.2"
thiserror = "1.0.22"
tokio = { version = "1.0.2", features = ["full"] }
tokio-tungstenite = { version = "0.13.0", features = ["tls"] }
url = "2.1.0"
uuid = { version = "0.8.1", features = [ "serde", "v4" ] }
[dev-dependencies]
#pretty_env_logger = "0.4.0"
serial_test = "0.5.1"