2021-06-30 11:12:17 -04:00
|
|
|
[package]
|
|
|
|
name = "dictgen"
|
2024-07-31 12:40:32 -04:00
|
|
|
version = "0.2.9"
|
2021-07-01 09:52:36 -04:00
|
|
|
description = "Compile-time case-insensitive map"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling", "no_std"]
|
2022-11-01 15:20:38 -04:00
|
|
|
repository.workspace = true
|
2024-07-26 17:07:19 -04:00
|
|
|
license.workspace = true
|
2022-11-01 15:20:38 -04:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2021-06-30 11:12:17 -04:00
|
|
|
|
2024-04-26 22:14:01 -04:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2021-07-01 09:52:36 -04:00
|
|
|
[features]
|
2021-07-01 11:39:27 -04:00
|
|
|
default = ["std"]
|
2021-07-01 09:52:36 -04:00
|
|
|
std = []
|
2023-07-14 13:33:02 -04:00
|
|
|
codegen = ["std", "dep:phf_codegen"]
|
|
|
|
map = ["dep:phf", "dep:phf_shared"]
|
2021-07-01 09:52:36 -04:00
|
|
|
|
2021-06-30 11:12:17 -04:00
|
|
|
[dependencies]
|
2023-08-31 20:57:02 -04:00
|
|
|
unicase = "2.7"
|
2022-08-03 10:29:38 -04:00
|
|
|
phf = { version = "0.11", features = ["unicase"], optional = true }
|
|
|
|
phf_codegen = { version = "0.11", optional = true }
|
|
|
|
phf_shared = { version = "0.11", optional = true }
|
2024-04-26 22:14:01 -04:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|