mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
21 lines
580 B
TOML
21 lines
580 B
TOML
[package]
|
|
name = "dictgen"
|
|
version = "0.1.0"
|
|
description = "Compile-time case-insensitive map"
|
|
repository = "https://github.com/crate-ci/typos"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling", "no_std"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
codegen = ["std", "phf_codegen"]
|
|
map = ["phf", "phf_shared"]
|
|
|
|
[dependencies]
|
|
unicase = "2.5"
|
|
phf = { version = "0.9", features = ["unicase"], optional = true }
|
|
phf_codegen = { version = "0.9", optional = true }
|
|
phf_shared = { version = "0.9", optional = true }
|