-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
34 lines (28 loc) · 808 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
[package]
name = "rust-template"
version = "0.1.0"
authors = ["zaszi <admin@zaszi.net>"]
edition = "2021"
description = "A project template for Rust, helping to structure your projects according to best practices."
documentation = "https://github.com/zaszi/rust-template"
readme = "README.md"
homepage = "https://github.com/zaszi/rust-template"
repository = "https://github.com/zaszi/rust-template"
license-file = "LICENSE"
keywords = ["template", "wasm"]
categories = ["rust-patterns", "wasm"]
publish = false
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = []
[dependencies]
wasm-bindgen = "0.2"
[dev-dependencies]
wasm-bindgen-test = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
wee_alloc = "0.4"
[profile.release]
lto = true
panic = "abort"