2019-10-28 12:01:22 -04:00
|
|
|
[package]
|
|
|
|
name = "codespell-dict"
|
2021-05-21 21:41:02 -04:00
|
|
|
version = "0.4.0"
|
2019-10-28 12:01:22 -04:00
|
|
|
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 = "CC-BY-SA-3.0"
|
|
|
|
edition = "2018"
|
2019-10-28 18:07:20 -04:00
|
|
|
publish = false
|
2021-11-08 11:11:02 -05:00
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
|
|
|
"LICENSE*",
|
|
|
|
"README.md",
|
|
|
|
"examples/**/*"
|
|
|
|
]
|
2019-10-28 12:01:22 -04:00
|
|
|
|
2021-06-07 09:22:31 -04:00
|
|
|
[package.metadata.release]
|
2021-11-16 08:44:08 -05:00
|
|
|
release = false
|
2021-06-07 09:22:31 -04:00
|
|
|
|
2019-10-28 12:01:22 -04:00
|
|
|
[dependencies]
|
|
|
|
unicase = "2.5"
|
2021-06-30 11:12:17 -04:00
|
|
|
dictgen = { version = "0.1", path = "../dictgen" }
|