typos/crates/misspell-dict/Cargo.toml

28 lines
597 B
TOML
Raw Normal View History

[package]
name = "misspell-dict"
2021-05-21 21:41:02 -04:00
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"]
2021-08-16 12:23:25 -04:00
license = "MIT OR Apache-2.0"
edition = "2018"
publish = false
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
[package.metadata.release]
2021-11-16 08:44:08 -05:00
release = false
[dependencies]
unicase = "2.5"
log = "0.4"
2021-11-16 08:46:33 -05:00
dictgen = { version = "^0.2", path = "../dictgen" }