typos/crates/typos-dict/Cargo.toml

24 lines
540 B
TOML
Raw Normal View History

2019-08-08 10:24:50 -05:00
[package]
name = "typos-dict"
2022-04-25 11:49:02 -05:00
version = "0.8.1"
2019-08-08 10:24:50 -05:00
description = "Source Code Spelling Correction"
2021-11-08 10:11:02 -06:00
authors = ["Ed Page <eopage@gmail.com>"]
license = "MIT OR Apache-2.0"
2019-10-25 09:58:24 -06:00
repository = "https://github.com/crate-ci/typos"
2019-10-28 08:19:47 -06:00
readme = "../../README.md"
2019-08-08 10:24:50 -05:00
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
edition = "2018"
2021-11-08 10:11:02 -06:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
2019-08-08 10:24:50 -05:00
[dependencies]
2019-10-25 10:24:25 -06:00
unicase = "2.5"
2019-08-08 10:24:50 -05:00
log = "0.4"
2021-11-16 07:46:33 -06:00
dictgen = { version = "^0.2", path = "../dictgen" }