Files
blake3.wasm/Cargo.toml
T

31 lines
803 B
TOML
Raw Normal View History

2026-04-18 13:41:33 +02:00
[package]
name = "blake3-wasm-rs"
2026-04-28 06:32:43 +02:00
version = "0.6.1"
2026-04-18 13:41:33 +02:00
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["Thomas <[email protected]>"]
publish = false
2026-04-18 13:41:33 +02:00
repository = "https://github.com/UneBaguette/blake3.wasm"
description = "BLAKE3 hashing with optional WASM bindings"
2026-04-18 13:41:33 +02:00
keywords = ["blake3", "wasm", "hash", "cryptography", "wasm-bindgen"]
categories = ["cryptography", "wasm"]
[lib]
2026-04-22 18:43:45 +02:00
crate-type = ["cdylib", "rlib"]
2026-04-18 13:41:33 +02:00
[features]
default = []
wasm = ["dep:wasm-bindgen"]
talc = ["dep:talc"]
zeroize = ["blake3/zeroize"]
2026-04-18 13:41:33 +02:00
[dependencies]
blake3 = { version = "1", features = ["wasm32_simd"] }
wasm-bindgen = { version = "=0.2.118", optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3"
hex = "0.4"
[target.'cfg(target_family = "wasm")'.dependencies]
talc = { version = "5", optional = true }