-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (37 loc) · 992 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
35
36
37
38
39
40
41
42
[package]
name = "binoxxo-webapp-seed"
version = "0.4.0"
authors = ["Martin Suesskraut <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT"
description = "Binoxxo puzzle game as a webapp using wasm and seed"
repository = "https://github.com/msuesskraut/binoxxo-webapp-seed"
homepage = "https://msuesskraut.github.io/binoxxo/"
[lib]
crate-type = ["cdylib"]
[dependencies]
seed = "0.8.0"
wasm-bindgen = "0.2.68"
binoxxo = { version = "0.4.0", features = ["wasm-bindgen"] }
fluent-bundle = "0.13.1"
unic-langid = { version = "0.9.0", features = ["macros"] }
elsa = "1.3.2"
lazy_static = "1.4.0"
# For serialization, eg sending requests to a server. Otherwise, not required.
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
[dependencies.web-sys]
version = "^0.3.45"
features = [
"Blob",
"Event",
"EventTarget",
"File",
"FileList",
"FormData",
"HtmlInputElement",
]
[dev-dependencies]
wasm-bindgen-test = "0.3.18"