2019-08-08 10:04:51 -05:00
|
|
|
[package]
|
|
|
|
name = "typos"
|
2019-11-02 19:59:59 -06:00
|
|
|
version = "0.3.0"
|
2019-08-08 10:04:51 -05: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-10-25 09:51:37 -06:00
|
|
|
readme = "../README.md"
|
2019-08-08 10:04:51 -05:00
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
|
|
|
license = "MIT"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[badges]
|
2019-10-25 09:58:24 -06:00
|
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
|
|
codecov = { repository = "crate-ci/typos" }
|
2019-08-08 10:04:51 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2019-10-29 11:36:50 -06:00
|
|
|
anyhow = "1.0"
|
2019-10-29 13:37:48 -06:00
|
|
|
thiserror = "1.0"
|
2020-04-01 08:49:01 +00:00
|
|
|
regex = "1.3"
|
2020-11-09 19:27:25 -06:00
|
|
|
once_cell = "1.2.0"
|
2019-08-08 10:04:51 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2020-04-01 08:49:45 +00:00
|
|
|
itertools = "0.9"
|
2019-08-08 10:04:51 -05:00
|
|
|
bstr = "0.2"
|
|
|
|
log = "0.4"
|
2019-12-02 14:11:13 +00:00
|
|
|
unicode-segmentation = "1.6.0"
|
2020-10-01 08:11:46 +00:00
|
|
|
derive_more = "0.99.11"
|
2020-03-24 06:11:31 -05:00
|
|
|
derive_setters = "0.1"
|
2020-08-21 14:28:59 -05:00
|
|
|
content_inspector = "0.2.4"
|