Some checks failed
CI / rustfmt (push) Successful in 3m5s
CI / wasm build (push) Failing after 3m44s
CI / clippy (push) Failing after 3m44s
CI / test (push) Failing after 3m44s
CI / web client (push) Has been cancelled
CI / duplicate code (push) Has been cancelled
CI / example (push) Has been cancelled
CI / cargo-machete (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled
31 lines
767 B
TOML
31 lines
767 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 = { 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"] }
|
|
mtp-crypto = { version = "0.1.0", path = "../crypto", features = ["wasm"] }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
hex = "0.4"
|