[package] name = "hermit-toolkit-crypto" version = "0.1.0" edition = "2021" authors = ["Dao lang ", "MARBLE"] description = "Hermit crypto" license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] hash = ["sha2"] rand = ["rand_chacha", "rand_core"] ecc-secp256k1 = ["secp256k1"] [dependencies] rand_chacha = { version = "0.2.2", default-features = false, optional = true } rand_core = { version = "0.5.1", default-features = false, optional = true } sha2 = { version = "0.9.1", default-features = false, optional = true } secp256k1 = { version = "0.21.3", optional = true } cosmwasm-std = { version = "0.10.1", package = "secret-cosmwasm-std" } [dev-dependencies] secp256k1-test = { package = "secp256k1", version = "0.17", features = ["rand-std", "recovery"] }