[package] name = "earthbucks_secp256k1" description = "Elliptic curve secp256k1 for EarthBucks with optional support for WASM." version = "0.8.5" edition = "2021" license = "MIT" authors = ["Ryan X. Charles "] repository = "https://github.com/earthbucks/earthbucks" [lib] crate-type = ["cdylib", "rlib"] [features] # The 'wasm' feature enables the wasm-bindgen dependency and other wasm-specific code. wasm = ["wasm-bindgen"] [dependencies] earthbucks_k256 = { version = "0.8.2", default-features = false, features = ["arithmetic", "ecdsa"] } hex = "0.4.3" # Conditionally include wasm-bindgen only when the 'wasm' feature is enabled wasm-bindgen = { version = "0.2", optional = true }