-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
50 lines (42 loc) · 1.4 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
# You must change these to your own details.
[package]
authors = ["Ian Huang <[email protected]>"]
categories = ["wasm"]
description = "My awesome Rust, WebAssembly, and TypeScript library template!"
edition = "2018"
license = "MIT"
name = "rust-typescript-template"
readme = "README.md"
repository = "https://github.com/iantheearl/rust-typescript-template"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
name = "core"
path = "core/lib.rs"
[profile.release]
# This makes the compiled code faster and smaller, but it makes compiling slower,
# so it's only enabled in release mode.
lto = true
[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.45"
# `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}
fixedbitset = "0.4.1"
# The `web-sys` crate allows you to interact with the various browser APIs,
# like the DOM.
[dependencies.web-sys]
features = ["console"]
version = "0.3.22"
# These crates are used for running unit tests.
[dev-dependencies]
futures = "0.3.19"
js-sys = "0.3.22"
wasm-bindgen-futures = "0.4.28"
wasm-bindgen-test = "0.3.28"