typos/Cargo.toml

122 lines
3.2 KiB
TOML
Raw Normal View History

[workspace]
2019-10-28 12:01:22 -04:00
members = [
2022-08-01 15:45:58 -04:00
"crates/*",
2019-10-28 12:01:22 -04:00
]
2022-11-01 15:20:38 -04:00
resolver = "2"
2022-11-01 15:20:38 -04:00
[workspace.package]
2021-08-16 12:23:25 -04:00
license = "MIT OR Apache-2.0"
2019-10-25 11:58:24 -04:00
repository = "https://github.com/crate-ci/typos"
2022-06-01 07:53:10 -04:00
edition = "2021"
2022-10-04 11:51:03 -04:00
rust-version = "1.64.0" # MSRV
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
2022-03-11 10:56:29 -05:00
"Cargo.lock",
2021-11-08 11:11:02 -05:00
"LICENSE*",
"README.md",
2021-11-15 09:22:11 -05:00
"benches/**/*",
2021-11-08 11:11:02 -05:00
"examples/**/*"
]
2019-01-22 17:01:33 -05:00
2022-11-01 15:20:38 -04:00
[package]
name = "typos-cli"
2022-12-20 15:39:46 -05:00
version = "1.13.6"
2022-11-01 15:20:38 -04:00
description = "Source Code Spelling Correction"
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
license.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true
[package.metadata.docs.rs]
no-default-features = true
2021-04-13 22:31:13 -04:00
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
2021-07-30 13:08:41 -04:00
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/crate-ci/typos/compare/{{tag_name}}...HEAD", exactly=1},
{file="docker/Dockerfile", search="ARG VERSION=.*", replace="ARG VERSION={{version}}", min=1},
{file="docs/pre-commit.md", search="rev: .*", replace="rev: {{tag_name}}", exactly=1},
{file="setup.py", search="TYPOS_VERSION = .*", replace="TYPOS_VERSION = '{{version}}'", exactly=1},
2021-04-13 22:31:13 -04:00
]
2021-08-16 12:23:25 -04:00
[features]
default = ["dict", "vars"]
dict = ["typos-dict"]
vars = ["typos-vars"]
2019-10-24 22:11:13 -04:00
[[bin]]
name = "typos"
2021-05-04 22:47:34 -04:00
path = "src/bin/typos-cli/main.rs"
2019-10-24 22:11:13 -04:00
doc = false
2019-01-22 17:01:33 -05:00
[dependencies]
2022-05-10 15:24:11 -04:00
typos = { version = "^0.10", path = "crates/typos" }
2022-11-03 23:28:10 -04:00
varcon-core = { version = "^2.2.7", path = "crates/varcon-core" }
2022-08-30 10:28:57 -04:00
typos-dict = { version = "^0.9", path = "crates/typos-dict", optional = true }
2021-11-16 08:46:33 -05:00
typos-vars = { version = "^0.8", path = "crates/typos-vars", optional = true }
2022-08-03 10:29:38 -04:00
unicase = "2.6"
2019-10-29 13:36:50 -04:00
anyhow = "1.0"
2022-12-31 19:09:44 -05:00
clap = { version = "4.0.32", features = ["derive"] }
2022-09-28 16:53:45 -04:00
clap-verbosity-flag = "2.0"
2019-01-22 17:01:33 -05:00
ignore = "0.4"
serde = { version = "1.0", features = ["derive"] }
toml_edit = { version = "0.16.2", features = ["easy"] }
2019-07-19 23:45:41 -04:00
log = "0.4"
2022-12-01 20:30:30 -05:00
env_logger = { version = "0.10", default-features = false, features = ["auto-color"] }
atty = "0.2.14"
yansi = "0.5.1"
2022-12-01 20:30:30 -05:00
concolor = { version = "0.0.11" }
concolor-clap = { version = "0.0.13", features = ["api_unstable"] }
2022-12-31 19:09:44 -05:00
bstr = "1.1"
once_cell = "1.17.0"
2022-09-01 07:50:35 -04:00
ahash = "0.8"
2020-11-11 19:19:26 -05:00
difflib = "0.4"
2022-10-04 11:46:45 -04:00
proc-exit = "2.0"
2020-11-23 13:40:55 -05:00
human-panic = "1.0.3"
2020-12-30 20:41:08 -05:00
content_inspector = "0.2.4"
2022-10-03 12:36:25 -04:00
unicode-segmentation = "1.10.0"
derive_more = "0.99.17"
2020-12-30 20:41:08 -05:00
derive_setters = "0.1"
itertools = "0.10"
2020-12-30 20:41:08 -05:00
serde_json = "1.0"
encoding = "0.2"
2022-03-29 15:42:12 -04:00
kstring = { version = "2.0.0", features = ["serde"] }
typed-arena = "2.0.1"
maplit = "1.0"
2022-10-03 12:36:25 -04:00
unicode-width = "0.1.10"
unic-emoji-char = "0.9.0"
thread_local = "1.1.4"
globset = "0.4.9"
2019-01-22 17:01:33 -05:00
[dev-dependencies]
assert_fs = "1.0"
2022-12-31 19:09:44 -05:00
trycmd = "0.14.6"
2022-10-03 12:36:25 -04:00
criterion = "0.4"
2020-11-23 13:40:55 -05:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
2021-02-05 22:38:44 -05:00
[[bench]]
name = "checks"
harness = false
[[bench]]
name = "corrections"
harness = false
[[bench]]
name = "tokenize"
harness = false