typos/crates/dictgen/Cargo.toml

30 lines
718 B
TOML
Raw Normal View History

[package]
name = "dictgen"
2024-12-16 16:18:49 -05:00
version = "0.2.11"
description = "Compile-time case-insensitive map"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling", "no_std"]
2022-11-01 15:20:38 -04:00
repository.workspace = true
2024-07-26 17:07:19 -04:00
license.workspace = true
2022-11-01 15:20:38 -04:00
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
2024-12-02 12:30:24 -05:00
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
2024-04-26 22:14:01 -04:00
[features]
2021-07-01 11:39:27 -04:00
default = ["std"]
std = []
codegen = ["std"]
2023-07-14 13:33:02 -04:00
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_shared = { version = "0.11", optional = true }
2024-04-26 22:14:01 -04:00
[lints]
workspace = true