mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
32 lines
753 B
TOML
32 lines
753 B
TOML
[package]
|
|
name = "codespell-dict"
|
|
version = "0.4.3"
|
|
description = "Source Code Spelling Correction"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
publish = false
|
|
license = "CC-BY-SA-3.0"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
unicase = "2.7"
|
|
dictgen = { version = "^0.2", path = "../dictgen" }
|
|
|
|
[dev-dependencies]
|
|
unicase = "2.7"
|
|
itertools = "0.13"
|
|
codegenrs = "3.0"
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
|
snapbox = "0.6.5"
|
|
typos = { path = "../typos" }
|
|
|
|
[lints]
|
|
workspace = true
|