2020-04-07 20:50:06 -04:00
|
|
|
[package]
|
2020-05-27 21:47:36 -04:00
|
|
|
name = "varcon"
|
2024-07-31 12:40:32 -04:00
|
|
|
version = "0.7.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
|
|
|
repository.workspace = true
|
2024-07-26 17:07:19 -04:00
|
|
|
license.workspace = true
|
2022-11-01 15:20:38 -04:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2020-04-07 20:50:06 -04:00
|
|
|
|
2024-04-26 22:14:01 -04:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
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]
|
2024-08-23 14:56:02 -04:00
|
|
|
varcon-core = { version = "^5.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"
|
2024-08-23 14:56:02 -04:00
|
|
|
varcon-core = { version = "^5.0", path = "../varcon-core", features = ["parser"] }
|
2024-05-27 23:11:47 -04:00
|
|
|
snapbox = "0.6.5"
|
2024-04-26 22:14:01 -04:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|