This repository has been archived by the owner on Oct 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (68 loc) · 1.53 KB
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "mech-wasm"
version = "0.1.0"
authors = ["Corey Montella <corey@mech-lang.org>"]
description = "A web assembly wrapper for Mech core and syntax. Allows Mech to be embedded in the browser."
documentation = "http://docs.mech-lang.org"
homepage = "https://mech-lang.org"
repository = "https://github.com/mech-lang/wasm"
keywords = ["mech", "language", "programming", "wasm", "reactive"]
categories = ["science::robotics", "science", "wasm", "web-programming"]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
[badges]
gitlab = { repository = "mech-lang/wasm", branch = "main" }
maintenance = { status = "actively-developed" }
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
mech-core = "0.1"
mech-syntax = "0.1"
mech-utilities = "0.1"
mech-math = "0.1"
mech-html = "0.1"
hashbrown = "0.13.1"
wasm-bindgen = "0.2.83"
bincode = "1.3.3"
js-sys = "0.3.60"
lazy_static = "1.4.0"
miniz_oxide = "0.6.2"
base64 = "0.20.0"
[dev-dependencies]
wasm-bindgen-test = "0.3.33"
[dependencies.web-sys]
version = "0.3.60"
features = [
'Document',
'Element',
'HtmlElement',
'HtmlDivElement',
'HtmlImageElement',
'HtmlCanvasElement',
'HtmlInputElement',
'InputEvent',
'MouseEvent',
'KeyboardEvent',
'TouchEvent',
'Event',
'EventTarget',
'CanvasRenderingContext2d',
'Node',
'Window',
'Selection',
'Range',
'HtmlCollection',
'WebSocket',
'MessageEvent',
'BinaryType',
'Blob',
'ErrorEvent',
'ProgressEvent',
'HashChangeEvent',
'FileReader',
'Location',
'console',
'XmlHttpRequest',
]
[workspace]