File size: 743 Bytes
d5bfab8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
[package]
name = "loda-rust-web"
version = "0.1.0"
authors = ["Simon Strandgaard <[email protected]>"]
description = "Interactive web interface, so a person new to LODA, can try it in their browser."
repository = "https://github.com/loda-lang/loda-rust"
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
loda-rust-core = { path = "../loda-rust-core" }
wasm-bindgen = "0.2"
js-sys = "0.3.51"
wasm-bindgen-futures = "0.4.25"
console_error_panic_hook = "0.1.6"
log = { version = "0.4.14", features = ["std"] }
[dependencies.web-sys]
version = "0.3.4"
features = [
'Headers',
'Request',
'RequestInit',
'RequestMode',
'Response',
'Window',
'Document',
'Element',
'WorkerGlobalScope'
]
|