mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-23 09:30:57 -05:00
b1cf03c7eb
This is mostly to give implementation flexibility for changing out how we store the data to reduce compilation memory usage. This does have performance impact, jumping from ~220ns to ~320ns for a dict lookup, according to our micro benchmarks.
28 lines
788 B
TOML
28 lines
788 B
TOML
[package]
|
|
name = "typos-vars-codegen"
|
|
version = "1.3.0"
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
description = "Source Code Spelling Correction"
|
|
repository = "https://github.com/crate-ci/typos"
|
|
readme = "../../../README.md"
|
|
categories = ["text-processing"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[badges]
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
codecov = { repository = "crate-ci/typos" }
|
|
|
|
[dependencies]
|
|
varcon = { version = "^0.5", path = "../../varcon", features = ["flags"] }
|
|
varcon-core = { version = "^2.0", path = "../../varcon-core", features = ["flags"] }
|
|
typos = { version = "^0.6", path = "../../typos" }
|
|
unicase = "2.5"
|
|
codegenrs = "1.0"
|
|
structopt = "0.3"
|
|
clap = "2"
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
clap-verbosity-flag = "0.3"
|
|
itertools = "0.10"
|