-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 943 Bytes
/
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
[package]
name = "anychain-ffi-lib"
edition = "2021"
homepage = "https://www.cregis.com"
license = "MIT/Apache-2.0"
repository = "https://github.com/0xcregis/anychain"
version = "0.1.0"
[lib]
name = "anychain_ffi_lib"
crate-type = ["cdylib", "staticlib"]
[dependencies]
ethabi = "18.0.0"
libsecp256k1 = "0.7.1"
ethereum-types = "0.13.1"
digest = "0.10.7"
hex = "0.4.2"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
libaes = "0.7.0"
sha2 = "0.10.8"
protobuf = "=3.4.0"
jni = { version = "0.20", optional = true }
neon = { version = "0.10", optional = true, features = ["napi-6"], default-features = false }
anychain-core = "0.1.6"
anychain-kms = "0.1.8"
anychain-bitcoin = "0.1.7"
anychain-ethereum = "0.1.16"
anychain-tron = "0.2.5"
bs58 = "0.5.1"
url = "2.3.1"
[features]
default = ["cbinding"]
cbinding = []
napi = ["neon"]
[build-dependencies]
cbindgen = "0.27.0"