2020-04-07 19:50:06 -05:00
|
|
|
[package]
|
2020-05-27 20:47:36 -05:00
|
|
|
name = "varcon"
|
2024-08-23 13:56:24 -05:00
|
|
|
version = "1.0.0"
|
2020-04-07 19:50:06 -05:00
|
|
|
description = "Source Code Spelling Correction"
|
|
|
|
readme = "../../README.md"
|
|
|
|
categories = ["development-tools", "text-processing"]
|
|
|
|
keywords = ["development", "spelling"]
|
2022-11-01 14:20:38 -05:00
|
|
|
repository.workspace = true
|
2024-07-26 16:07:19 -05:00
|
|
|
license.workspace = true
|
2022-11-01 14:20:38 -05:00
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
include.workspace = true
|
2020-04-07 19:50:06 -05:00
|
|
|
|
2024-04-26 21:14:01 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2020-04-07 19:50:06 -05:00
|
|
|
[features]
|
|
|
|
default = ["all"]
|
|
|
|
all = ["flags"]
|
2020-05-27 20:51:04 -05:00
|
|
|
flags = ["varcon-core/flags"]
|
2020-04-07 19:50:06 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-23 13:56:02 -05:00
|
|
|
varcon-core = { version = "^5.0", path = "../varcon-core" }
|
2022-08-01 14:45:58 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-16 12:58:00 -05:00
|
|
|
codegenrs = "3.0"
|
2024-08-23 13:56:02 -05:00
|
|
|
varcon-core = { version = "^5.0", path = "../varcon-core", features = ["parser"] }
|
2024-05-27 22:11:47 -05:00
|
|
|
snapbox = "0.6.5"
|
2024-04-26 21:14:01 -05:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|