2021-06-30 11:12:17 -04:00
|
|
|
[package]
|
|
|
|
name = "dictgen"
|
|
|
|
version = "0.1.0"
|
2021-07-01 09:52:36 -04:00
|
|
|
description = "Compile-time case-insensitive map"
|
|
|
|
repository = "https://github.com/crate-ci/typos"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling", "no_std"]
|
|
|
|
license = "MIT"
|
2021-06-30 11:12:17 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
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 = []
|
2021-07-01 11:39:27 -04:00
|
|
|
codegen = ["std", "phf_codegen"]
|
|
|
|
map = ["phf", "phf_shared"]
|
2021-07-01 09:52:36 -04:00
|
|
|
|
2021-06-30 11:12:17 -04:00
|
|
|
[dependencies]
|
|
|
|
unicase = "2.5"
|
2021-07-01 11:39:27 -04:00
|
|
|
phf = { version = "0.9", features = ["unicase"], optional = true }
|
|
|
|
phf_codegen = { version = "0.9", optional = true }
|
|
|
|
phf_shared = { version = "0.9", optional = true }
|