mirror of
https://github.com/UneBaguette/blake3.wasm.git
synced 2026-08-07 00:00:16 +02:00
28 lines
682 B
TOML
28 lines
682 B
TOML
[package]
|
|
name = "blake3-wasm-rs"
|
|
version = "0.5.1"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
authors = ["UneBaguette <[email protected]>"]
|
|
publish = false
|
|
repository = "https://github.com/UneBaguette/blake3.wasm"
|
|
description = "Simple blake3 to wasm project"
|
|
keywords = ["blake3", "wasm", "hash", "cryptography", "wasm-bindgen"]
|
|
categories = ["cryptography", "wasm"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
talc = ["dep:talc"]
|
|
|
|
[dependencies]
|
|
blake3 = { version = "1.8", features = ["wasm32_simd"] }
|
|
wasm-bindgen = "=0.2.118"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
hex = "0.4"
|
|
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
|
talc = { version = "5", optional = true } |