-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (53 loc) · 1.24 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
[package]
name = "hangman_solver"
version = "0.4.2"
edition = "2024"
repository = "https://github.com/asozialesnetzwerk/hangman_solver"
description = "Solves hangman puzzles"
license-file = "LICENSE"
include = [
"build.rs",
"src/*",
"words/*.txt",
"Cargo.toml",
"Cargo.lock",
"LICENSE",
]
build = "build.rs"
[features]
default = ["terminal_size"]
wasm-bindgen = ["dep:wasm-bindgen", "dep:js-sys"]
[profile.release]
codegen-units = 1
panic = "abort"
strip = true
lto = true
opt-level = "z"
[profile.profile]
inherits = "release"
strip = false
lto = false
debug = 1
[[bin]]
name = "hangman_solver"
[lib]
name = "hangman_solver_lib"
crate-type = ["cdylib", "lib"]
[dependencies]
cfg-if = { version = "1.0.0", features = [] }
counter = "0.6.0"
itertools = { version = "0.13.0", features = [] }
pyo3 = { version = "0.23.3", features = [
"extension-module",
"abi3",
"abi3-py312",
"experimental-inspect",
], optional = true }
terminal_size = { version = "0.4.0", optional = true }
wasm-bindgen = { version = "0.2.95", optional = true }
js-sys = { version = "0.3.69", optional = true }
[build-dependencies]
itertools = { version = "0.13.0", features = [] }
Inflector = "0.11.4"
unicode-segmentation = "1.12.0"
easy-parallel = "3.3.1"