# SPDX-FileCopyrightText: 2022 Shun Sakai # # SPDX-License-Identifier: Apache-2.0 OR MIT [package] name = "abcrypt-wasm" version = "0.3.2" authors.workspace = true edition.workspace = true rust-version.workspace = true description = "Wasm bindings for abcrypt" documentation = "https://docs.rs/abcrypt-wasm" readme = "README.md" homepage.workspace = true repository.workspace = true license = "Apache-2.0 OR MIT" keywords = ["abcrypt", "crypto"] categories = ["cryptography", "wasm"] include = ["/LICENSES", "/README.md", "/src"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["cdylib", "rlib"] [dependencies] abcrypt = { version = "0.3.2", path = "../abcrypt" } getrandom = { version = "0.2.12", features = ["js"] } wasm-bindgen = "0.2.91" [dev-dependencies] wasm-bindgen-test = "0.3.41"