-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
52 lines (47 loc) · 1.67 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
[package]
name = "api"
version = "0.1.0"
authors = ["wyoyw <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
log = {version = "0.4", features = ["std"]}
transport = {path = "../transport"}
device = {path = "../device"}
coin-ethereum = {path = "../wallet/coin-ethereum"}
coin-bitcoin = {path = "../wallet/coin-bitcoin"}
coin-eos = {path = "../wallet/coin-eos"}
coin-cosmos = {path = "../wallet/coin-cosmos"}
coin-filecoin = {path = "../wallet/coin-filecoin"}
coin-substrate = {path = "../wallet/coin-substrate"}
coin-tron = {path = "../wallet/coin-tron"}
coin-ckb = {path = "../wallet/coin-ckb"}
coin-bch = {path = "../wallet/coin-bch"}
coin-btc-fork = {path = "../wallet/coin-btc-fork"}
coin-ethereum2 = {path = "../wallet/coin-ethereum2"}
common = {path = "../common"}
coin-tezos = {path = "../wallet/coin-tezos"}
bitcoin = "0.25.0"
ethereum-types = "0.6.0"
prost = "0.6.1"
bytes = "0.5.4"
prost-types = "0.6.1"
hex = "0.4.2"
failure = "0.1.8"
linked-hash-map = { version = "0.5.3", features = ["serde_impl"] }
serde_json = { version = "1.0.53", default-features = false, features = ["alloc"] }
base64 = "0.10.1"
parking_lot = "0.10"
[lib]
name="connector"
crate-type=["staticlib","cdylib"]
#
#[target.aarch64-linux-android.dependencies]
#openssl = { version = "*", features = ["vendored"] }
#[target.armv7-linux-androideabi.dependencies]
#openssl = { version = "*", features = ["vendored"] }
#[target.i686-linux-android.dependencies]
#openssl = { version = "*", features = ["vendored"] }
#[target.x86_64-linux-android.dependencies]
#openssl = { version = "*", features = ["vendored"] }