-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (26 loc) · 861 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
[package]
name = "coinbase"
version = "0.1.0"
authors = ["Amol Bhave <[email protected]>"]
edition = "2018"
description = "Coinbase Client for Rust"
readme = "README.md"
repository = "https://github.com/ammubhave/coinbase-rs"
license = "MIT"
keywords = ["coinbase", "api", "cryptocurrencies", "bitcoin"]
documentation = "https://ammubhave.github.io/coinbase-rs/"
categories = [ "api-bindings", "cryptography::cryptocurrencies" ]
[dependencies]
reqwest = { version = "0.11.3", features = ["json"] }
tokio = {version = "1.3.0", features = ["macros", "rt", "rt-multi-thread"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4.19", features = ["serde"] }
hmac = "0.10.1"
sha2 = "0.9.3"
hex = "0.4.3"
[[example]]
name = "get_current_user"
path = "src/examples/get_current_user.rs"
[dev-dependencies]
dotenv = "0.15.0"