2019-01-22 17:01:33 -05:00
|
|
|
[package]
|
2019-07-03 21:22:36 -04:00
|
|
|
name = "typos"
|
2019-01-22 17:01:33 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
|
|
description = "Source Code Spelling Correction"
|
2019-07-03 21:22:36 -04:00
|
|
|
repository = "https://github.com/epage/typos"
|
|
|
|
documentation = "https://docs.rs/typos"
|
2019-01-22 17:01:33 -05:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
|
|
|
license = "MIT"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[badges]
|
2019-07-03 21:22:36 -04:00
|
|
|
travis-ci = { repository = "epage/typos" }
|
|
|
|
appveyor = { repository = "epage/typos" }
|
2019-01-22 17:01:33 -05:00
|
|
|
|
2019-06-14 17:19:15 -04:00
|
|
|
[features]
|
|
|
|
# Support quickly iterating
|
|
|
|
iterate_unstable = []
|
|
|
|
|
2019-01-22 17:01:33 -05:00
|
|
|
[dependencies]
|
|
|
|
failure = "0.1"
|
|
|
|
structopt = "0.2"
|
2019-01-23 09:33:51 -05:00
|
|
|
clap = "2"
|
2019-07-19 23:45:41 -04:00
|
|
|
clap-verbosity-flag = "0.2.0"
|
2019-01-22 17:01:33 -05:00
|
|
|
ignore = "0.4"
|
2019-04-17 09:30:17 -04:00
|
|
|
phf = { version = "0.7", features = ["unicase"] }
|
2019-01-22 17:01:33 -05:00
|
|
|
regex = "1.0"
|
|
|
|
lazy_static = "1.2.0"
|
2019-01-23 09:33:51 -05:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
itertools = "0.8"
|
2019-04-17 09:30:17 -04:00
|
|
|
unicase = "1.1"
|
2019-07-13 21:52:24 -04:00
|
|
|
bstr = "0.2"
|
2019-07-19 23:45:41 -04:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.6"
|
2019-01-22 17:01:33 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_fs = "0.10"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
phf_codegen = "0.7"
|
|
|
|
csv = "1.0"
|
2019-04-17 09:30:17 -04:00
|
|
|
unicase = "1.1"
|