typos/crates/dictgen/Cargo.toml

31 lines
755 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2024-07-31 11:40:32 -05:00
version = "0.2.9"
description = "Compile-time case-insensitive map"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling", "no_std"]
2022-11-01 14:20:38 -05:00
repository.workspace = true
2024-07-26 16:07:19 -05:00
license.workspace = true
2022-11-01 14:20:38 -05:00
edition.workspace = true
rust-version.workspace = true
include.workspace = true
2024-04-26 21:14:01 -05:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[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 }
2024-04-26 21:14:01 -05:00
[lints]
workspace = true