-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (52 loc) · 1.17 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
[workspace]
members = [".", "skima-rsx", "examples/todomvc"]
[package]
authors = ["Stanislav Panferov <[email protected]>"]
edition = "2021"
name = "skima"
version = "0.1.0"
description = "Rust structural UI library for web"
homepage = "https://github.com/s-panferov/skima"
keywords = ["web", "webasm", "javascript"]
categories = ["gui", "wasm", "web-programming"]
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
bumpalo = { version = "3.13.0", features = ["collections"] }
indexmap = "2.0.0"
by_address = "1.1.0"
tracing = "0.1.37"
castaway = "0.2.2"
fxhash = "0.2.1"
downcast-rs = "1.2.0"
no-panic = "0.1.23"
observe = { path = "../observe" }
wasm-bindgen = "0.2.87"
js-sys = "0.3.64"
smallvec = "1.10.0"
console_error_panic_hook = "0.1.7"
tracing-wasm = "0.2.1"
skima-rsx = { path = "./skima-rsx" }
type_at = "*"
web-sys = { version = "0.3.64", features = [
"Window",
"console",
"Event",
"Node",
"Text",
"Element",
"History",
"HtmlElement",
"HtmlCollection",
"DomTokenList",
"Document",
"NodeList",
"CssStyleDeclaration",
"Range",
] }
[dev-dependencies]
wasm-bindgen-test = "0.3.37"
[profile.release]
lto = true
strip = "debuginfo"