mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-26 02:51:08 -05:00
9cbc7410a4
This saves us from having to have configuration for every detail. If people need more control, we can offer it later. Fixes #225
27 lines
683 B
TOML
27 lines
683 B
TOML
[package]
|
|
name = "typos"
|
|
version = "0.4.0"
|
|
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"
|
|
|
|
[badges]
|
|
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
|
codecov = { repository = "crate-ci/typos" }
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
nom = "6.0"
|
|
unicode-xid = "0.2.2"
|
|
once_cell = "1.2.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
simdutf8 = "0.1.1"
|
|
itertools = "0.10"
|
|
log = "0.4"
|
|
unicode-segmentation = "1.7.1"
|