typos/crates/typos-dict/Cargo.toml

25 lines
572 B
TOML
Raw Normal View History

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