mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
c7ca904401
I've been cutting down the dict size to speed up my testing but I keep submitting it. Instead, it is a feature.
43 lines
945 B
TOML
43 lines
945 B
TOML
[package]
|
|
name = "defenestrate"
|
|
version = "0.1.0"
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
description = "Source Code Spelling Correction"
|
|
repository = "https://github.com/crate-ci/defenestrate"
|
|
documentation = "https://docs.rs/defenestrate"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "crate-ci/defenestrate" }
|
|
appveyor = { repository = "epage/defenestrate" }
|
|
|
|
[features]
|
|
# Support quickly iterating
|
|
iterate_unstable = []
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
structopt = "0.2"
|
|
clap = "2"
|
|
ignore = "0.4"
|
|
phf = { version = "0.7", features = ["unicase"] }
|
|
regex = "1.0"
|
|
lazy_static = "1.2.0"
|
|
grep-searcher = "0.1"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
itertools = "0.8"
|
|
unicase = "1.1"
|
|
|
|
[dev-dependencies]
|
|
assert_fs = "0.10"
|
|
|
|
[build-dependencies]
|
|
phf_codegen = "0.7"
|
|
csv = "1.0"
|
|
unicase = "1.1"
|