2019-08-08 10:04:51 -05:00
|
|
|
[package]
|
|
|
|
name = "typos"
|
2024-03-01 10:26:53 -06:00
|
|
|
version = "0.10.22"
|
2019-08-08 10:04:51 -05:00
|
|
|
description = "Source Code Spelling Correction"
|
2021-04-13 21:36:47 -05:00
|
|
|
readme = "../../README.md"
|
2019-08-08 10:04:51 -05:00
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2022-11-01 14:20:38 -05:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
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"
|
2024-03-01 01:43:17 +00:00
|
|
|
winnow = "0.6.5"
|
2022-10-03 11:36:25 -05:00
|
|
|
unicode-xid = "0.2.4"
|
2024-01-01 01:35:45 +00:00
|
|
|
once_cell = "1.19.0"
|
2019-08-08 10:04:51 -05:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-08-03 09:29:38 -05:00
|
|
|
simdutf8 = "0.1.4"
|
2023-12-01 00:25:50 +00:00
|
|
|
itertools = "0.12"
|
2024-03-01 01:43:17 +00:00
|
|
|
unicode-segmentation = "1.11.0"
|
2024-01-01 01:35:45 +00:00
|
|
|
bstr = "1.9"
|