Cargo.toml 748 Bytes
Newer Older
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
1
2
3
4
5
6
[package]
name = "signer"
version = "0.1.0"
authors = ["debris <marek.kotewicz@gmail.com>"]

[dependencies]
7
libc = "0.2"
8
rustc-serialize = "0.3"
9
ethkey = { git = "https://github.com/paritytech/parity" }
10
ethstore = { git = "https://github.com/paritytech/parity" }
11
rlp = { git = "https://github.com/paritytech/parity" }
12
tiny-keccak = "1.1"
13
blockies = "0.1"
14
parity-wordlist = { git = "https://github.com/paritytech/wordlist" }
Marek Kotewicz's avatar
init  
Marek Kotewicz committed
15

Marek Kotewicz's avatar
Marek Kotewicz committed
16
[target.'cfg(target_os="android")'.dependencies]
17
18
jni = { git = "https://github.com/prevoty/jni-rs", default-features = false }

Marek Kotewicz's avatar
init  
Marek Kotewicz committed
19
20
[lib]
name = "signer"
21
crate-type = ["staticlib", "cdylib"]
22
23
24
25

# https://github.com/DaGenix/rust-crypto/issues/383
[replace]
"rust-crypto:0.2.36" = { git = "https://github.com/debris/rust-crypto" }