-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (58 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "wordroute"
version = "0.1.0"
edition = "2021"
default-run = "build-puzzle"
license = "GPL-3.0-or-later"
description = "A word search game"
repository = "https://github.com/bpeel/wordroute"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "build-puzzle"
path = "src/build_puzzle.rs"
[[bin]]
name = "extract-dictionary"
path = "src/extract-dictionary.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target."cfg(target_arch = \"wasm32\")".dependencies.wasm_bindgen]
package = "wasm-bindgen"
version = "0.2.87"
[target."cfg(target_arch = \"wasm32\")".dependencies.web_sys]
package = "web-sys"
version = "0.3.64"
features = [
"Element",
"Window",
"console",
"CssStyleDeclaration",
"Document",
"HtmlDocument",
"Response",
"HtmlElement",
"HtmlInputElement",
"HtmlTextAreaElement",
"SvgElement",
"Text",
"RequestInit",
"RequestCache",
"KeyboardEvent",
"PointerEvent",
"DomTokenList",
"Location",
"UrlSearchParams",
"Storage",
]
[target."cfg(target_arch = \"wasm32\")".dependencies.js_sys]
package = "js-sys"
version = "0.3.64"
[target."cfg(target_arch = \"wasm32\")".dependencies.console_error_panic_hook]
version = "0.1.7"
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.clap]
version = "4.5.4"
features = ["derive"]
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.serde]
version = "1.0.204"
features = ["derive"]
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.serde_json]
version = "1.0.120"