mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
chore: Update boiletplate
This commit is contained in:
parent
e5897daa6e
commit
a8ae8a5c26
20 changed files with 87 additions and 70 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -14,6 +14,8 @@ on:
|
|||
- '!/*.md'
|
||||
- '!/docs/**'
|
||||
- "!/LICENSE-*"
|
||||
schedule:
|
||||
- cron: '3 3 3 * *'
|
||||
jobs:
|
||||
ci:
|
||||
name: CI
|
||||
|
@ -113,6 +115,8 @@ jobs:
|
|||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
# Not MSRV because its harder to jump between versions and people are
|
||||
# more likely to have stable
|
||||
toolchain: stable
|
||||
profile: minimal
|
||||
override: true
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1 @@
|
|||
/target
|
||||
**/*.rs.bk
|
||||
|
|
11
Cargo.toml
11
Cargo.toml
|
@ -21,6 +21,13 @@ readme = "README.md"
|
|||
categories = ["development-tools", "text-processing"]
|
||||
keywords = ["development", "spelling"]
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
no-default-features = true
|
||||
|
@ -49,10 +56,6 @@ name = "typos"
|
|||
path = "src/bin/typos-cli/main.rs"
|
||||
doc = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[dependencies]
|
||||
typos = { version = "^0.7", path = "crates/typos" }
|
||||
varcon-core = { version = "^2.0.0", path = "crates/varcon-core" }
|
||||
|
|
|
@ -10,9 +10,13 @@ keywords = ["development", "spelling"]
|
|||
license = "CC-BY-SA-3.0"
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -7,6 +7,13 @@ categories = ["development-tools", "text-processing"]
|
|||
keywords = ["development", "spelling", "no_std"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
|
|
@ -10,9 +10,13 @@ keywords = ["development", "spelling"]
|
|||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
[package]
|
||||
name = "typos-dict"
|
||||
version = "0.6.3"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
unicase = "2.5"
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
[package]
|
||||
name = "typos-vars"
|
||||
version = "0.7.2"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
unicase = "2.5"
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
[package]
|
||||
name = "typos"
|
||||
version = "0.7.5"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
|
@ -1,16 +1,20 @@
|
|||
[package]
|
||||
name = "varcon-core"
|
||||
version = "2.1.1"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
[package]
|
||||
name = "varcon"
|
||||
version = "0.5.1"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[features]
|
||||
default = ["all"]
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -1,18 +1,22 @@
|
|||
[package]
|
||||
name = "wikipedia-dict"
|
||||
version = "0.4.0"
|
||||
authors = ["Ed Page <eopage@gmail.com>"]
|
||||
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"]
|
||||
license = "CC-BY-SA-3.0"
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
include = [
|
||||
"src/**/*",
|
||||
"Cargo.toml",
|
||||
"LICENSE*",
|
||||
"README.md",
|
||||
"examples/**/*"
|
||||
]
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
|
|
@ -10,10 +10,6 @@ license = "MIT"
|
|||
edition = "2018"
|
||||
publish = false
|
||||
|
||||
[badges]
|
||||
azure-devops = { project = "crate-ci", pipeline = "typos" }
|
||||
codecov = { repository = "crate-ci/typos" }
|
||||
|
||||
[package.metadata.release]
|
||||
disable-release = true
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
pre-release-commit-message = "chore: Release"
|
||||
no-dev-version = true
|
||||
dev-version = false
|
||||
tag-message = "{{tag_name}}"
|
||||
tag-name = "{{prefix}}v{{version}}"
|
||||
consolidate-commits = true
|
||||
|
|
Loading…
Reference in a new issue