typos/crates/dictgen/Cargo.toml

24 lines
646 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2023-09-01 16:20:50 -05:00
version = "0.2.7"
description = "Compile-time case-insensitive map"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling", "no_std"]
2022-11-01 14:20:38 -05:00
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true
[features]
2021-07-01 10:39:27 -05:00
default = ["std"]
std = []
2023-07-14 12:33:02 -05:00
codegen = ["std", "dep:phf_codegen"]
map = ["dep:phf", "dep:phf_shared"]
[dependencies]
2023-09-01 00:57:02 +00:00
unicase = "2.7"
2022-08-03 09:29:38 -05:00
phf = { version = "0.11", features = ["unicase"], optional = true }
phf_codegen = { version = "0.11", optional = true }
phf_shared = { version = "0.11", optional = true }