20 lines
582 B
TOML
20 lines
582 B
TOML
[package]
|
|
name = "reqwest-wasm-example"
|
|
version = "0.3.0"
|
|
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# Config mostly pulled from: https://github.com/rustwasm/wasm-bindgen/blob/master/examples/fetch/Cargo.toml
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
reqwest = "^0.11"
|
|
uuid = "0.8"
|
|
cloudevents-sdk = { path = "../..", features = ["reqwest"] }
|
|
url = { version = "^2.1" }
|
|
web-sys = { version = "0.3.39", features = ["Window", "Location"] }
|
|
wasm-bindgen-futures = "0.4.12"
|
|
wasm-bindgen = { version = "0.2.77", features = ["serde-serialize"] }
|