mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
30 lines
755 B
TOML
30 lines
755 B
TOML
[package]
|
|
name = "dictgen"
|
|
version = "0.2.8"
|
|
description = "Compile-time case-insensitive map"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling", "no_std"]
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
codegen = ["std", "dep:phf_codegen"]
|
|
map = ["dep:phf", "dep:phf_shared"]
|
|
|
|
[dependencies]
|
|
unicase = "2.7"
|
|
phf = { version = "0.11", features = ["unicase"], optional = true }
|
|
phf_codegen = { version = "0.11", optional = true }
|
|
phf_shared = { version = "0.11", optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|