-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (41 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
51 lines (41 loc) · 997 Bytes
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
[package]
name = "boggle-solver"
version = "0.1.0"
authors = ["Elf M. Sternberg <elf.sternberg@gmail.com>"]
edition = "2018"
license = "MPL-2.0+"
description = "Boggle™ Automatic Solver"
repository = "https://github.com/elfsternberg/boggle-solver"
readme = "./README.md"
[features]
threaded = ["crossbeam", "crossbeam-deque", "num_cpus"]
slow_board = []
[dependencies]
itertools = "0.14.0"
regex = "1"
crossbeam = { version = "0.8.4", optional = true }
crossbeam-deque = { version = "0.8.6", optional = true }
num_cpus = { version = "1.10.1", optional = true }
clap = { version = "4.5.60", features = ["derive"] }
lazy_static = "1.5.0"
rayon = "1.11.0"
bitmaps = "3.2.1"
[dev-dependencies]
tempfile = "3.0.7"
criterion = "0.8.1"
assert_cmd = "2.1.2"
predicates = "3.1.3"
[[bench]]
name = "perf1"
harness = false
[[bench]]
name = "perf8"
harness = false
[[bench]]
name = "perfp"
harness = false
[profile.release]
debug = true
[lib]
name = "boggle_solver"
path = "src/lib.rs"