mirror of
https://github.com/crate-ci/typos.git
synced 2024-12-22 15:42:23 -05:00
32b96444b9
Some checks are pending
Security audit / security_audit (push) Waiting to run
Security audit / cargo_deny (bans licenses sources) (push) Waiting to run
CI / CI (push) Blocked by required conditions
CI / Test (push) Waiting to run
CI / Check MSRV (push) Waiting to run
CI / lockfile (push) Waiting to run
CI / Docs (push) Waiting to run
CI / rustfmt (push) Waiting to run
CI / clippy (push) Waiting to run
CI / Coverage (push) Waiting to run
/ linux (aarch64) (push) Waiting to run
/ linux (x86) (push) Waiting to run
/ linux (x86_64) (push) Waiting to run
/ musllinux (aarch64) (push) Waiting to run
/ musllinux (x86_64) (push) Waiting to run
/ windows (x64) (push) Waiting to run
/ windows (x86) (push) Waiting to run
/ macos (aarch64) (push) Waiting to run
/ macos (x86_64) (push) Waiting to run
/ sdist (push) Waiting to run
/ Release (push) Blocked by required conditions
pre-commit / pre-commit (push) Waiting to run
fix: remove some unused deps
29 lines
718 B
TOML
29 lines
718 B
TOML
[package]
|
|
name = "dictgen"
|
|
version = "0.2.10"
|
|
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", "--generate-link-to-definition"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
codegen = ["std"]
|
|
map = ["dep:phf", "dep:phf_shared"]
|
|
|
|
[dependencies]
|
|
unicase = "2.7"
|
|
phf = { version = "0.11", features = ["unicase"], optional = true }
|
|
phf_shared = { version = "0.11", optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|