2019-08-08 11:04:51 -04:00
|
|
|
[workspace]
|
2019-10-05 09:30:30 -04:00
|
|
|
members = ["codegen", "typos", "typos-dict"]
|
2019-08-08 11:04:51 -04:00
|
|
|
|
2019-01-22 17:01:33 -05:00
|
|
|
[package]
|
2019-08-08 11:04:51 -04:00
|
|
|
name = "typos-cli"
|
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"
|
2019-01-22 17:01:33 -05:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
|
|
|
license = "MIT"
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-10-24 22:11:13 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "typos"
|
|
|
|
path = "src/main.rs"
|
|
|
|
doc = false
|
|
|
|
|
2019-01-22 17:01:33 -05:00
|
|
|
[badges]
|
2019-10-25 09:49:41 -04:00
|
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
|
|
codecov = { repository = "crate-ci/typos" }
|
2019-01-22 17:01:33 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-08 11:04:51 -04:00
|
|
|
typos = { version = "0.1", path = "typos" }
|
2019-08-08 11:24:50 -04:00
|
|
|
typos-dict = { version = "0.1", path = "typos-dict" }
|
2019-01-22 17:01:33 -05:00
|
|
|
failure = "0.1"
|
2019-10-17 22:49:26 -04:00
|
|
|
structopt = "0.3"
|
2019-01-23 09:33:51 -05:00
|
|
|
clap = "2"
|
2019-10-17 22:49:26 -04:00
|
|
|
clap-verbosity-flag = "0.3"
|
2019-01-22 17:01:33 -05:00
|
|
|
ignore = "0.4"
|
2019-08-07 09:16:22 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-08-07 10:55:17 -04:00
|
|
|
toml = "0.4"
|
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"
|