-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 975 Bytes
/
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
[package]
name = "consecuit"
version = "0.2.1"
authors = ["Wisha Wa <wisha.wa@yandex.com>"]
edition = "2018"
license = "MPL-2.0"
description = "A functional web UI framework that uses the type system for hooks and more"
readme = "README.md"
documentation = "https://docs.rs/consecuit"
repository = "https://github.com/wishawa/consecuit"
keywords = ["webassembly", "gui", "functional"]
categories = ["wasm", "web-programming"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
sealed = "0.3.0"
wasm-bindgen = "0.2.78"
im-rc = "15.0.0"
consecuit_macros = { path = "./macros/", version = "^0.1.0" }
owning_ref = "0.4.1"
[dependencies.js-sys]
version = "0.3.55"
[dependencies.web-sys]
version = "0.3.55"
features = [
'Document',
'DocumentFragment',
'Element',
'Window',
'HtmlElement',
'Node',
'NodeList',
'CssStyleDeclaration',
'console',
]
[workspace]
members = [
"html/",
"macros/",
"examples/counters/",
"examples/todomvc",
"examples/minimal_counter"
]