mtp/wasm/Cargo.toml
Alex 3c09493b00
Some checks failed
CI / checks (push) Failing after 2m18s
Merge branch 'master' of ssh://git.methanium.net/methanium/mtp
2026-08-12 22:47:48 +02:00

40 lines
902 B
TOML

[package]
name = "mtp-wasm"
version = "0.2.0"
edition = "2024"
[package.metadata.cargo-machete]
ignored = ["getrandom"]
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
console_error_panic_hook = "0.1"
tracing = "0.1"
wasm-tracing = "2.1"
hex = "0.4"
getrandom = { version = "0.4.0", features = ["js"] }
getrandom-v04 = { package = "getrandom", version = "0.4.3", features = ["wasm_js"] }
mtp-common = { version = "0.2.0", path = "../common" }
mtp-type-map = { version = "0.2.0", path = "../type-map" }
mtp-codec = { version = "0.2.0", path = "../codec", features = ["crypto", "pipes", "registry"] }
mtp-crypto = { version = "0.2.0", path = "../crypto", features = ["wasm"] }
zeroize = "1.9"
wasm-bindgen-test = "0.3.76"
[dev-dependencies]
hex = "0.4"
[features]
default = []
pipes = []