You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
358 B
TOML
19 lines
358 B
TOML
[package]
|
|
name = "appname"
|
|
version = "0.1.0"
|
|
authors = ["Your Name <email@address.com>"]
|
|
edition = "2018"
|
|
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
seed = "^0.1.0"
|
|
wasm-bindgen = "^0.2.28"
|
|
web-sys = "^0.3.6"
|
|
|
|
# For serialization, eg sending requests to a server. Otherwise, not required.
|
|
serde = "^1.0.80"
|
|
serde_derive = "^1.0.80"
|
|
serde_json = "1.0.33" |