Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.56.0" # MSRV
msrv = "1.64.0" # MSRV
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
- name: No-default features
run: cargo test --workspace --no-default-features
msrv:
name: "Check MSRV: 1.56.0"
name: "Check MSRV: 1.64.0"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0 # MSRV
toolchain: 1.64.0 # MSRV
profile: minimal
override: true
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0 # MSRV
toolchain: 1.64.0 # MSRV
profile: minimal
override: true
components: clippy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.64.0 # MSRV
- stable
continue-on-error: ${{ matrix.rust != '1.56.0' }} # MSRV
continue-on-error: ${{ matrix.rust != '1.64.0' }} # MSRV
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
14 changes: 14 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
[workspace]
members = ["crates/*"]
resolver = "2"

[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.64.0" # MSRV
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
16 changes: 4 additions & 12 deletions crates/anstyle-ansi-term/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-ansi-term"
version = "0.1.2"
description = "Adapt between ansi_term and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "ansi_term"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-crossterm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-crossterm"
version = "0.1.1"
description = "Adapt between crossterm and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "crossterm"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-git/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-git"
version = "0.2.3"
description = "Parse Git Style Descriptions"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "git", "colorparse"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-lossy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-lossy"
version = "0.1.1"
description = "Lossy conversion between ANSI Color Codes"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-ls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-ls"
version = "0.1.1"
description = "Parse LS_COLORS Style Descriptions"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "ls", "colorparse"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-owo-colors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-owo-colors"
version = "0.2.2"
description = "Adapt between owo-colors and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "owo-colors"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-syntect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-syntect"
version = "0.1.2"
description = "Adapt between syntect and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "syntect"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-termcolor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-termcolor"
version = "0.2.2"
description = "Adapt between termcolor and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "termcolor"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle-yansi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle-yansi"
version = "0.2.2"
description = "Adapt between yansi and anstyle"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "yansi"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
pre-release-replacements = [
Expand Down
16 changes: 4 additions & 12 deletions crates/anstyle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,14 @@
name = "anstyle"
version = "0.2.5"
description = "ANSI text styling"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-cli/anstyle.git"
homepage = "https://github.com/rust-cli/anstyle"
categories = ["command-line-interface"]
keywords = ["ansi", "terminal", "color", "no_std"]
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
edition = "2021"
rust-version = "1.56.0"
license.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true

[package.metadata.release]
tag-prefix = ""
Expand Down