mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
30 lines
679 B
TOML
30 lines
679 B
TOML
[package]
|
|
name = "misspell-dict"
|
|
version = "0.4.0"
|
|
description = "Source Code Spelling Correction"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[dependencies]
|
|
unicase = "2.7"
|
|
dictgen = { version = "^0.2", path = "../dictgen" }
|
|
|
|
[dev-dependencies]
|
|
unicase = "2.7"
|
|
itertools = "0.13"
|
|
codegenrs = "3.0"
|
|
regex = "1"
|
|
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
|
|
snapbox = "0.6.5"
|
|
|
|
[lints]
|
|
workspace = true
|