mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
a1e95bc7c0
Before, only some dicts did we guarentee were pre-sorted. Now, all are for-sure pre-sorted. This also gives each dict the size-check to avoid lookup. But this is really about refactoring in prep for playing with other lookup options, like tries.
23 lines
610 B
TOML
23 lines
610 B
TOML
[package]
|
|
name = "codespell-dict"
|
|
version = "0.4.0"
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
description = "Source Code Spelling Correction"
|
|
repository = "https://github.com/crate-ci/typos"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
license = "CC-BY-SA-3.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[badges]
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
codecov = { repository = "crate-ci/typos" }
|
|
|
|
[package.metadata.release]
|
|
disable-release = true
|
|
|
|
[dependencies]
|
|
unicase = "2.5"
|
|
dictgen = { version = "0.1", path = "../dictgen" }
|