mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
32 lines
798 B
TOML
32 lines
798 B
TOML
[package]
|
|
name = "varcon"
|
|
version = "0.6.2"
|
|
description = "Source Code Spelling Correction"
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/crate-ci/typos"
|
|
readme = "../../README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
edition = "2021"
|
|
rust-version = "1.59.0" # MSRV
|
|
include = [
|
|
"src/**/*",
|
|
"Cargo.toml",
|
|
"LICENSE*",
|
|
"README.md",
|
|
"examples/**/*"
|
|
]
|
|
|
|
[features]
|
|
default = ["all"]
|
|
all = ["flags"]
|
|
flags = ["varcon-core/flags"]
|
|
|
|
[dependencies]
|
|
snapbox = { version = "0.3.1", features = ["path"] }
|
|
varcon-core = { version = "^2.0", path = "../varcon-core" }
|
|
|
|
[dev-dependencies]
|
|
codegenrs = "2.0"
|
|
varcon-core = { version = "^2.0", path = "../varcon-core", features = ["parser"] }
|