-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathCargo.toml
46 lines (41 loc) · 1.05 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
[package]
name = "coinnect"
version = "0.5.12"
license = "MIT"
authors = ["Hugues Gaillard <[email protected]>", "Alejandro Inestal <[email protected]>"]
description = """
A Rust library to connect to various crypto-currencies exchanges.
"""
documentation = "https://docs.rs/coinnect/"
homepage = "https://github.com/hugues31/coinnect"
repository = "https://github.com/hugues31/coinnect"
keywords = [ "bitcoin", "trading", "poloniex", "kraken", "bitstamp" ]
readme = "README.md"
edition = "2018"
[features]
default = []
bitstamp_private_tests = []
kraken_private_tests = []
poloniex_private_tests = []
bittrex_private_tests = []
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "kraken_trading"
path = "examples/kraken_trading.rs"
[[example]]
name = "generic_api"
path = "examples/generic_api.rs"
[dependencies]
hyper = "0.10.10"
serde_json = "1.0.0"
hyper-native-tls = "0.3"
lazy_static = "1.4"
bidir-map = "1.0.0"
data-encoding = "2.0.0-rc.1"
error-chain = "0.12"
sha2 = "0.9.5"
hmac = "0.11.0"
bigdecimal = "0.2.1"
chrono = "0.4.0"