-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (45 loc) · 1.1 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
[package]
name = "ingrid_core"
version = "1.3.1"
edition = "2021"
license = "MIT"
description = "Crossword-generating library and CLI tool"
repository = "https://github.com/rf-/ingrid_core"
readme = "README.md"
[dependencies]
smallvec = "1.8.0"
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
lazy_static = "1.4.0"
float-ord = "0.3.2"
rand = { version = "0.8.5", features = ["std", "alloc", "getrandom", "std_rng", "small_rng"] }
clap = { version = "4.0.15", features = ["derive"] }
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
unicode-normalization = "0.1.22"
tempfile = "3"
fancy-regex = "0.14.0"
[dev-dependencies]
ingrid_core = { path = ".", features = ["serde"] }
serde_json = "1.0.89"
indoc = "2.0.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
[profile.dev]
codegen-units = 1
lto = true
opt-level = 3
[profile.test]
codegen-units = 1
lto = true
opt-level = 3
[lib]
name = "ingrid_core"
path = "src/lib.rs"
[[bin]]
name = "ingrid_core"
path = "src/bin.rs"
[features]
check_invariants = []
serde = ["dep:serde", "dep:serde_derive"]