mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
b45157e955
Bumps [assert_fs](https://github.com/assert-rs/assert_fs) from 0.11.3 to 0.13.1. - [Release notes](https://github.com/assert-rs/assert_fs/releases) - [Changelog](https://github.com/assert-rs/assert_fs/blob/master/CHANGELOG.md) - [Commits](https://github.com/assert-rs/assert_fs/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[workspace]
|
|
members = [
|
|
"typos",
|
|
"dict/typos", "dict/typos/codegen",
|
|
"dict/codespell", "dict/codespell/codegen",
|
|
"dict/misspell", "dict/misspell/codegen",
|
|
"dict/wikipedia", "dict/wikipedia/codegen",
|
|
]
|
|
|
|
[package]
|
|
name = "typos-cli"
|
|
version = "0.1.4"
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
description = "Source Code Spelling Correction"
|
|
repository = "https://github.com/crate-ci/typos"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "typos"
|
|
path = "src/main.rs"
|
|
doc = false
|
|
|
|
[badges]
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
codecov = { repository = "crate-ci/typos" }
|
|
|
|
[dependencies]
|
|
typos = { version = "^0.3", path = "typos" }
|
|
typos-dict = { version = "^0.2", path = "dict/typos" }
|
|
phf = { version = "0.8", features = ["unicase"] }
|
|
unicase = "2.5"
|
|
anyhow = "1.0"
|
|
structopt = "0.3"
|
|
clap = "2"
|
|
clap-verbosity-flag = "0.3"
|
|
ignore = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.4"
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
|
|
[dev-dependencies]
|
|
assert_fs = "0.13"
|
|
bstr = "0.2"
|