Some checks failed
CI / rustfmt (push) Successful in 17s
CI / wasm build (push) Successful in 1m16s
CI / clippy (push) Successful in 1m28s
CI / test (push) Successful in 1m48s
CI / example (push) Successful in 1m31s
CI / duplicate code (push) Failing after 33s
CI / web client (push) Failing after 34s
CI / cargo-machete (push) Successful in 1m18s
CI / cargo-deny (push) Failing after 3m2s
31 lines
691 B
TOML
31 lines
691 B
TOML
[package]
|
|
name = "mtp-wasm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["getrandom-v02"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|
|
futures-channel = "0.3"
|
|
console_error_panic_hook = "0.1"
|
|
|
|
hex = "0.4"
|
|
|
|
getrandom = { version = "0.4", features = ["wasm_js"] }
|
|
getrandom-v02 = { package = "getrandom", version = "0.2", features = ["js"] }
|
|
|
|
mtp-common = { path = "../common" }
|
|
mtp-type-map = { path = "../type-map" }
|
|
mtp-codec = { path = "../codec", features = ["crypto"] }
|
|
mtp-crypto = { path = "../crypto", features = ["wasm"] }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
hex = "0.4"
|