rustwallet/Cargo.toml

31 lines
959 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", "cdylib"]
# 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"
secp256k1 = { version = "0.25.0", 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"
primitive-types = "0.12.1"
getrandom = { version = "0.2.7", features = ["js"]}
ecies = {version = "0.2", default-features = false, features = ["pure"]}
#[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.83"