[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" 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" ecies = {version = "0.2", default-features = false, features = ["pure"]} base64 = "0.21.0"