2020-05-27 21:46:41 -04:00
|
|
|
[package]
|
|
|
|
name = "typos-vars"
|
2021-11-03 12:48:12 -04:00
|
|
|
version = "0.7.2"
|
2020-05-27 21:46:41 -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"
|
2020-05-27 21:46:41 -04:00
|
|
|
repository = "https://github.com/crate-ci/typos"
|
|
|
|
readme = "../../README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
|
|
|
edition = "2018"
|
2021-11-08 11:11:02 -05:00
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
|
|
|
"LICENSE*",
|
|
|
|
"README.md",
|
|
|
|
"examples/**/*"
|
|
|
|
]
|
2020-05-27 21:46:41 -04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
unicase = "2.5"
|
|
|
|
log = "0.4"
|
2021-06-30 11:12:17 -04:00
|
|
|
dictgen = { version = "0.1", path = "../dictgen" }
|
2021-05-21 21:39:12 -04:00
|
|
|
varcon-core = { version = "^2.0", path = "../varcon-core", features = ["flags"] }
|