General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 3m30s

This commit is contained in:
Alex Emmet 2026-07-18 03:08:03 +02:00
commit 59419f086f
122 changed files with 10122 additions and 4965 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "mtp-wasm"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
[package.metadata.cargo-machete]
@ -13,22 +13,26 @@ crate-type = ["cdylib"]
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["console"] }
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", features = ["wasm_js"] }
getrandom = { version = "0.4.3", features = ["wasm_js"] }
getrandom-v02 = { package = "getrandom", version = "0.2", features = ["js"] }
mtp-common = { version = "0.1.0", path = "../common" }
mtp-type-map = { version = "0.1.0", path = "../type-map" }
mtp-codec = { version = "0.1.0", path = "../codec", features = ["crypto", "pipes"] }
mtp-crypto = { version = "0.1.0", path = "../crypto", features = ["wasm"] }
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"] }
mtp-crypto = { version = "0.2.0", path = "../crypto", features = ["wasm"] }
zeroize = "1.9"
wasm-bindgen-test = "0.3.76"
[dev-dependencies]
wasm-bindgen-test = "0.3"
hex = "0.4"
[features]