typos/crates/dictgen/Cargo.toml

31 lines
755 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2024-04-30 15:37:49 -04:00
version = "0.2.8"
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
2024-04-26 22:14:01 -04:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
2021-07-01 11:39:27 -04:00
default = ["std"]
std = []
2023-07-14 13:33:02 -04:00
codegen = ["std", "dep:phf_codegen"]
map = ["dep:phf", "dep:phf_shared"]
[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