2020-05-08 14:12:21 +00:00
|
|
|
[package]
|
|
|
|
name = "wasm"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["stoically <stoically@protonmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# Config mostly pulled from: https://github.com/rustwasm/wasm-bindgen/blob/master/examples/fetch/Cargo.toml
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-22 19:24:30 +00:00
|
|
|
url = "2.2.1"
|
|
|
|
wasm-bindgen = { version = "0.2.72", features = ["serde-serialize"] }
|
|
|
|
wasm-bindgen-futures = "0.4.22"
|
|
|
|
console_error_panic_hook = "0.1.6"
|
|
|
|
web-sys = { version = "0.3.49", features = ["console"] }
|
2020-05-08 14:12:21 +00:00
|
|
|
|
2021-01-22 17:14:08 +00:00
|
|
|
[dependencies.matrix-sdk]
|
|
|
|
path = "../.."
|
|
|
|
default-features = false
|
2021-03-22 19:24:30 +00:00
|
|
|
features = ["native-tls", "encryption"]
|
2021-01-22 17:14:08 +00:00
|
|
|
|
2020-05-08 14:12:21 +00:00
|
|
|
[workspace]
|