mirror of
https://github.com/UneBaguette/blake3.wasm.git
synced 2026-08-07 00:00:16 +02:00
31 lines
803 B
TOML
31 lines
803 B
TOML
[package]
|
|||
name = "blake3-wasm-rs"
|
|||
version = "0.6.6"
|
|||
edition = "2024"
|
|||
license = "MIT OR Apache-2.0"
|
|||
|
|
authors = ["Thomas <[email protected]>"]
|
||
publish = false
|
|||
repository = "https://github.com/UneBaguette/blake3.wasm"
|
|||
description = "BLAKE3 hashing with optional WASM bindings"
|
|||
keywords = ["blake3", "wasm", "hash", "cryptography", "wasm-bindgen"]
|
|||
|
|
categories = ["cryptography", "wasm"]
|
||
|
|
|
||
|
|
[lib]
|
||
crate-type = ["cdylib", "rlib"]
|
|||
|
|||
[features]
|
|||
default = []
|
|||
|
|
wasm = ["dep:wasm-bindgen"]
|
||
talc = ["dep:talc"]
|
|||
zeroize = ["blake3/zeroize"]
|
|||
|
|||
[dependencies]
|
|||
blake3 = { version = "1", features = ["wasm32_simd"] }
|
|||
wasm-bindgen = { version = "=0.2.123", optional = true }
|
|||
|
|||
|
|
[dev-dependencies]
|
||
wasm-bindgen-test = "0.3"
|
|||
hex = "0.4"
|
|||
|
|
|
||
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
||
|
|
talc = { version = "5", optional = true }
|