generated from Fallenstedt/wasm-react-webpack-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
65 lines (57 loc) · 1.64 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
# You must change these to your own details.
[package]
authors = ["Alex Fallenstedt <[email protected]>", "Adam Michel <[email protected]>"]
categories = ["wasm"]
description = "todo add desc"
edition = "2018"
name = "gobblet"
readme = "README.md"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[features]
# If you uncomment this line, it will enable `wee_alloc`:
#default = ["wee_alloc"]
[dependencies]
# The `wasm-bindgen` crate provides the bare minimum functionality needed
# to interact with JavaScript.
wasm-bindgen = "0.2.64"
js-sys = "0.3.40"
# `wee_alloc` is a tiny allocator for wasm that is only ~1K in code size
# compared to the default allocator's ~10K. However, it is slower than the default
# allocator, so it's not enabled by default.
wee_alloc = {version = "0.4.2", optional = true}
[dependencies.web-sys]
features = [
'console',
'CanvasRenderingContext2d',
'Document',
'EventTarget',
'Element',
'HtmlCanvasElement',
'HtmlVideoElement',
'HtmlElement',
'ImageData',
'MediaStream',
'MessageEvent',
'MouseEvent',
'Path2d',
'Performance',
'RtcDataChannel',
'RtcDataChannelEvent',
'Window',
]
version = "0.3.40"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so it's only enabled
# in debug mode.
[target."cfg(debug_assertions)".dependencies]
console_error_panic_hook = "0.1.5"
# These crates are used for running unit tests.
[dev-dependencies]
futures = "0.1.27"
wasm-bindgen-futures = "0.3.22"
[profile.release]
lto = true
opt-level = 3