forked from howardwu/wagyu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.06 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
[package]
name = "wagu"
version = "0.5.0"
authors = ["Ali Mousa <[email protected]>", "Collin Chin <[email protected]>", "Raymond Chu <[email protected]>"]
description = "Generate a wallet for any cryptocurrency. Pronounced like wagyu. Wagu is the wallet generation utility. Wagu allows users to generate wallets for the following cryptocurrencies: Bitcoin, Ethereum, Monero, Zcash (Transparent Addresses)"
homepage = "https://github.com/ArgusObserver/wagu"
repository = "https://github.com/ArgusObserver/wagu"
readme = "README.md"
license = "GPL-3.0"
categories = ["command-line-utilities"]
keywords = ["cryptocurrency", "blockchain", "bitcoin", "wallet", "ethereum"]
[dependencies]
arrayvec = "0.4.7"
base58 = "0.1"
clap = "~2.27.0"
digest = "0.7.5"
either = "1.5.0"
hex = "0.3.2"
hex-slice = "0.1.4"
lazy_static = "1.1.0"
openssl = "0.10.11"
rand = "0.5"
ripemd160 = "0.7"
safemem = "0.3.0"
secp256k1 = "0.11.1"
sha2 = "0.7"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tiny-keccak = "1.4"
[badges]
travis-ci = { repository = "ArgusObserver/wagu", branch = "master" }