Files
blake3.wasm/Cargo.toml
T

19 lines
481 B
TOML
Raw Normal View History

2026-04-18 13:41:33 +02:00
[package]
name = "blake3-wasm-rs"
version = "0.1.1"
2026-04-18 13:41:33 +02:00
edition = "2024"
license = "MIT"
repository = "https://github.com/UneBaguette/blake3.wasm"
description = "Simple blake3 to wasm project"
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
[dependencies]
blake3 = { version = "1.8.4", features = ["wasm32_simd"] }
wasm-bindgen = "0.2.118"
[dev-dependencies]
wasm-bindgen-test = "0.3"