forked from dallyshalla/tropix
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
58 lines (45 loc) · 1.09 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
47
48
49
50
51
52
53
54
55
56
57
58
[package]
authors = ["Safe Exchange Developers <team@safex.io>"]
description = "API implementations to various crypto exchanges and some automated systems"
documentation = "http://safex.io/safex/latest"
homepage = "http://safex.io"
license = "MIT"
name = "tropix"
readme = "README.md"
repository = "https://github.com/safex/tropix"
version = "0.1.0"
[[bin]]
name = "bittrexcli"
path = "apps/bittrex/bittrexcli.rs"
[[bin]]
name = "bittrexautobuy"
path = "apps/bittrex/bittrexautobuy.rs"
[[bin]]
name = "bittrexautosell"
path = "apps/bittrex/bittrexautosell.rs"
[[bin]]
name = "bittrexbuyprice"
path = "apps/bittrex/bittrexautobuyprice.rs"
[[bin]]
name = "poloautobuy"
path = "apps/poloniex/poloautobuy.rs"
[[bin]]
name = "poloautosell"
path = "apps/poloniex/poloautosell.rs"
[[bin]]
name = "polobuysell"
path = "apps/poloniex/buy_v_sell_poloniex.rs"
[[bin]]
name = "polobuyprice"
path = "apps/poloniex/poloautobuyprice.rs"
[lib]
name = "tropix"
path = "src/lib.rs"
[dependencies]
rustc-serialize = "0.3.16"
time = "0.1"
rust-crypto = "^0.2"
curl = "0.2.16"
hyper = "0.7.2"
iron = " 0.3.0"
url = "0.5.7"