typos/Cargo.toml

40 lines
897 B
TOML
Raw Normal View History

[workspace]
members = ["codegen", "typos", "typos-dict"]
2019-01-22 15:01:33 -07:00
[package]
name = "typos-cli"
2019-10-25 10:10:55 -06:00
version = "0.1.1"
2019-01-22 15:01:33 -07:00
authors = ["Ed Page <eopage@gmail.com>"]
description = "Source Code Spelling Correction"
2019-10-25 09:58:24 -06:00
repository = "https://github.com/crate-ci/typos"
2019-01-22 15:01:33 -07:00
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
license = "MIT"
edition = "2018"
2019-10-24 20:11:13 -06:00
[[bin]]
name = "typos"
path = "src/main.rs"
doc = false
2019-01-22 15:01:33 -07:00
[badges]
2019-10-25 07:49:41 -06:00
azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }
2019-01-22 15:01:33 -07:00
[dependencies]
typos = { version = "0.1", path = "typos" }
2019-08-08 10:24:50 -05:00
typos-dict = { version = "0.1", path = "typos-dict" }
2019-01-22 15:01:33 -07:00
failure = "0.1"
2019-10-17 20:49:26 -06:00
structopt = "0.3"
2019-01-23 07:33:51 -07:00
clap = "2"
2019-10-17 20:49:26 -06:00
clap-verbosity-flag = "0.3"
2019-01-22 15:01:33 -07:00
ignore = "0.4"
serde = { version = "1.0", features = ["derive"] }
2019-08-07 09:55:17 -05:00
toml = "0.4"
2019-07-19 21:45:41 -06:00
log = "0.4"
env_logger = "0.6"
2019-01-22 15:01:33 -07:00
[dev-dependencies]
2019-10-25 10:24:25 -06:00
assert_fs = "0.11"