2020-04-07 20:50:06 -04:00
|
|
|
[package]
|
2020-05-27 21:47:36 -04:00
|
|
|
name = "varcon"
|
2022-12-01 21:00:28 -05:00
|
|
|
version = "0.6.7"
|
2020-04-07 20:50:06 -04:00
|
|
|
description = "Source Code Spelling Correction"
|
|
|
|
readme = "../../README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2022-11-01 15:20:38 -04:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2020-04-07 20:50:06 -04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["all"]
|
|
|
|
all = ["flags"]
|
2020-05-27 21:51:04 -04:00
|
|
|
flags = ["varcon-core/flags"]
|
2020-04-07 20:50:06 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-03 10:29:38 -04:00
|
|
|
varcon-core = { version = "^2.2", path = "../varcon-core" }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
codegenrs = "2.0"
|
2022-08-03 10:29:38 -04:00
|
|
|
varcon-core = { version = "^2.2", path = "../varcon-core", features = ["parser"] }
|
2023-02-01 10:31:38 -05:00
|
|
|
snapbox = { version = "0.4.4", features = ["path"] }
|