typos/Cargo.toml

87 lines
1.9 KiB
TOML
Raw Normal View History

[workspace]
2019-10-28 10:01:22 -06:00
members = [
"crates/typos",
"crates/typos-dict", "crates/typos-dict/codegen", "crates/typos-dict/verify",
"crates/typos-vars", "crates/typos-vars/codegen",
"crates/codespell-dict", "crates/codespell-dict/codegen",
"crates/misspell-dict", "crates/misspell-dict/codegen",
"crates/wikipedia-dict", "crates/wikipedia-dict/codegen",
2020-05-27 20:51:04 -05:00
"crates/varcon", "crates/varcon/codegen", "crates/varcon-core",
2019-10-28 10:01:22 -06:00
]
2019-01-22 15:01:33 -07:00
[package]
name = "typos-cli"
2019-11-02 20:10:00 -06:00
version = "0.1.4"
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.3", path = "crates/typos" }
typos-dict = { version = "^0.2", path = "crates/typos-dict" }
typos-vars = { version = "^0.2", path = "crates/typos-vars" }
phf = { version = "0.8", features = ["unicase"] }
unicase = "2.5"
2019-10-29 11:36:50 -06:00
anyhow = "1.0"
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"] }
toml = "0.5"
2019-07-19 21:45:41 -06:00
log = "0.4"
2020-11-10 19:35:17 -06:00
env_logger = "0.8"
bstr = "0.2"
once_cell = "1.2.0"
2021-02-04 21:40:07 -06:00
ahash = "0.7"
2020-11-11 18:19:26 -06:00
difflib = "0.4"
proc-exit = "1.0"
2020-11-23 12:40:55 -06:00
human-panic = "1.0.3"
2020-12-30 19:41:08 -06:00
content_inspector = "0.2.4"
unicode-segmentation = "1.6.0"
derive_more = "0.99.11"
derive_setters = "0.1"
itertools = "0.10"
2020-12-30 19:41:08 -06:00
serde_json = "1.0"
encoding = "0.2"
kstring = "1.0"
typed-arena = "2.0.1"
2019-01-22 15:01:33 -07:00
[dev-dependencies]
assert_fs = "1.0"
predicates = "1.0"
2021-02-05 21:38:44 -06:00
criterion = "0.3"
maplit = "1.0"
2020-11-23 12:40:55 -06:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
2021-02-05 21:38:44 -06:00
[[bench]]
name = "checks"
harness = false
[[bench]]
name = "corrections"
harness = false
[[bench]]
name = "tokenize"
harness = false