typos/crates/dictgen/Cargo.toml

30 lines
720 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2022-06-15 17:11:53 -04:00
version = "0.2.2"
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"
2022-06-01 07:53:10 -04:00
edition = "2021"
2022-06-01 07:50:26 -04:00
rust-version = "1.59.0" # MSRV
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
[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 }