2020-04-07 20:50:06 -04:00
|
|
|
[package]
|
2020-05-27 21:47:36 -04:00
|
|
|
name = "varcon"
|
2023-09-01 17:20:50 -04:00
|
|
|
version = "0.7.1"
|
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]
|
2023-07-14 15:01:12 -04:00
|
|
|
varcon-core = { version = "^4.0", path = "../varcon-core" }
|
2022-08-01 15:45:58 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-16 13:58:00 -04:00
|
|
|
codegenrs = "3.0"
|
2023-07-14 15:01:12 -04:00
|
|
|
varcon-core = { version = "^4.0", path = "../varcon-core", features = ["parser"] }
|
2023-10-16 13:58:00 -04:00
|
|
|
snapbox = { version = "0.4.14", features = ["path"] }
|