mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
chore: Switch to workspace inheritance
This commit is contained in:
parent
1cd8a74031
commit
87a02e2a2a
10 changed files with 60 additions and 116 deletions
23
Cargo.toml
23
Cargo.toml
|
@ -2,17 +2,11 @@
|
|||
members = [
|
||||
"crates/*",
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
[package]
|
||||
name = "typos-cli"
|
||||
version = "1.12.12"
|
||||
description = "Source Code Spelling Correction"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
[workspace.package]
|
||||
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.64.0" # MSRV
|
||||
include = [
|
||||
|
@ -25,6 +19,19 @@ include = [
|
|||
"examples/**/*"
|
||||
]
|
||||
|
||||
[package]
|
||||
name = "typos-cli"
|
||||
version = "1.12.12"
|
||||
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
|
||||
|
||||
|
|
|
@ -1,23 +1,16 @@
|
|||
[package]
|
||||
name = "codespell-dict"
|
||||
version = "0.4.0"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
description = "Source Code Spelling Correction"
|
||||
repository = "https://github.com/crate-ci/typos"
|
||||
readme = "README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
keywords = ["development", "spelling"]
|
||||
license = "CC-BY-SA-3.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.64.0" # MSRV
|
||||
publish = false
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license = "CC-BY-SA-3.0"
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[package.metadata.release]
|
||||
release = false
|
||||
|
|
|
@ -2,19 +2,13 @@
|
|||
name = "dictgen"
|
||||
version = "0.2.4"
|
||||
description = "Compile-time case-insensitive map"
|
||||
repository = "https://github.com/crate-ci/typos"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
keywords = ["development", "spelling", "no_std"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
|
|
@ -1,23 +1,15 @@
|
|||
[package]
|
||||
name = "misspell-dict"
|
||||
version = "0.4.0"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
description = "Source Code Spelling Correction"
|
||||
repository = "https://github.com/crate-ci/typos"
|
||||
readme = "README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
keywords = ["development", "spelling"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.64.0" # MSRV
|
||||
publish = false
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[package.metadata.release]
|
||||
release = false
|
||||
|
|
|
@ -2,21 +2,14 @@
|
|||
name = "typos-dict"
|
||||
version = "0.9.9"
|
||||
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.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[dependencies]
|
||||
unicase = "2.6"
|
||||
|
|
|
@ -2,21 +2,14 @@
|
|||
name = "typos-vars"
|
||||
version = "0.8.6"
|
||||
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.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[dependencies]
|
||||
unicase = "2.6"
|
||||
|
|
|
@ -2,21 +2,14 @@
|
|||
name = "typos"
|
||||
version = "0.10.5"
|
||||
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.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
|
@ -2,20 +2,13 @@
|
|||
name = "varcon-core"
|
||||
version = "2.2.6"
|
||||
description = "Varcon-relevant data structures"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/crate-ci/typos"
|
||||
readme = "../../README.md"
|
||||
categories = ["text-processing"]
|
||||
edition = "2021"
|
||||
rust-version = "1.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -2,21 +2,14 @@
|
|||
name = "varcon"
|
||||
version = "0.6.5"
|
||||
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.64.0" # MSRV
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["all"]
|
||||
|
|
|
@ -2,22 +2,15 @@
|
|||
name = "wikipedia-dict"
|
||||
version = "0.4.0"
|
||||
description = "Source Code Spelling Correction"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
license = "CC-BY-SA-3.0"
|
||||
repository = "https://github.com/crate-ci/typos"
|
||||
readme = "README.md"
|
||||
categories = ["development-tools", "text-processing"]
|
||||
keywords = ["development", "spelling"]
|
||||
edition = "2021"
|
||||
rust-version = "1.64.0" # MSRV
|
||||
publish = false
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
license = "CC-BY-SA-3.0"
|
||||
repository.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
include.workspace = true
|
||||
|
||||
[package.metadata.release]
|
||||
release = false
|
||||
|
|
Loading…
Reference in a new issue