typos/crates/dictgen/Cargo.toml

24 lines
634 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2022-11-03 23:28:10 -04:00
version = "0.2.5"
description = "Compile-time case-insensitive map"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling", "no_std"]
2022-11-01 15:20:38 -04:00
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true
[features]
2021-07-01 11:39:27 -04:00
default = ["std"]
std = []
2021-07-01 11:39:27 -04:00
codegen = ["std", "phf_codegen"]
map = ["phf", "phf_shared"]
[dependencies]
2022-08-03 10:29:38 -04:00
unicase = "2.6"
phf = { version = "0.11", features = ["unicase"], optional = true }
phf_codegen = { version = "0.11", optional = true }
phf_shared = { version = "0.11", optional = true }