rustwallet/Cargo.toml
2022-10-22 13:09:38 +08:00

28 lines
808 B
TOML

[package]
name = "rustwallet"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rustwallet"
# this is needed to build for iOS and Android.
crate-type = ["staticlib", "lib"]
# this dependency is only needed for Android.
# [target.'cfg(target_os = "android")'.dependencies]
# jni = { version = "0.19.0", default-features = false }
[dependencies]
anyhow = "1.0.65"
bitcoin_hashes = "0.11.0"
hex = "0.4.3"
openssl = { version = "0.10.41", features = ["vendored"] }
secp256k1 = { version = "0.21.3", features = ["rand-std", "bitcoin_hashes", "recovery"] }
serde = { version = "1.0.145", features = ["derive"]}
serde_json = "1.0.85"
shamir_secret_sharing = "0.1.1"
tiny-keccak = "1.5"
web3 = { version = "0.18.0"}