-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (35 loc) · 957 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
[package]
name = "binoxxo-webapp-seed"
version = "0.5.3"
authors = ["Martin Suesskraut <[email protected]>"]
edition = "2021"
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/"
[dependencies]
seed = "0.9.1"
wasm-bindgen = "0.2.80"
binoxxo = "0.5.0"
fluent-bundle = "0.15.2"
unic-langid = { version = "0.9.0", features = ["macros"] }
elsa = "1.7.0"
lazy_static = "1.4.0"
# For serialization, eg sending requests to a server. Otherwise, not required.
serde = "1.0.136"
serde_derive = "1.0.136"
serde_json = "1.0.79"
[dependencies.web-sys]
version = "^0.3.57"
features = [
"Blob",
"Event",
"EventTarget",
"File",
"FileList",
"FormData",
"HtmlInputElement",
]
[dev-dependencies]
wasm-bindgen-test = "0.3.30"