typos/Cargo.toml

48 lines
1 KiB
TOML
Raw Normal View History

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
[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"
phf = { version = "0.7", features = ["unicase"] }
2019-01-22 17:01:33 -05:00
regex = "1.0"
lazy_static = "1.2.0"
serde = { version = "1.0", features = ["derive"] }
2019-01-23 09:33:51 -05:00
serde_json = "1.0"
itertools = "0.8"
unicase = "1.1"
bstr = "0.2"
2019-07-19 23:45:41 -04:00
log = "0.4"
env_logger = "0.6"
unicode-segmentation = "1.3.0"
2019-08-07 09:20:18 -04:00
derive_more = "0.15.0"
2019-01-22 17:01:33 -05:00
[dev-dependencies]
assert_fs = "0.10"
[build-dependencies]
phf_codegen = "0.7"
csv = "1.0"
unicase = "1.1"