typos/crates/dictgen/Cargo.toml

22 lines
597 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2021-08-30 10:16:40 -04:00
version = "0.1.1"
description = "Compile-time case-insensitive map"
repository = "https://github.com/crate-ci/typos"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling", "no_std"]
2021-08-16 12:23:25 -04:00
license = "MIT OR Apache-2.0"
edition = "2018"
[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]
unicase = "2.5"
2021-09-01 07:38:52 -04:00
phf = { version = "0.10", features = ["unicase"], optional = true }
phf_codegen = { version = "0.10", optional = true }
phf_shared = { version = "0.10", optional = true }