Skip to content

Commit 9a98240

Browse files
authored
Merge pull request #204 from epage/template
chore: Centralize repository
2 parents 5faef51 + 8724724 commit 9a98240

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
repository = "REPOSITORY"
6+
repository = "https://github.com/rust-cli/anstyle.git"
77
license = "MIT OR Apache-2.0"
88
edition = "2021"
99
rust-version = "1.65.0" # MSRV

crates/anstream/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstream"
33
version = "0.6.15"
44
description = "A simple cross platform library for writing colored text to a terminal."
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "strip", "wincon"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-ansi-term/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-ansi-term"
33
version = "1.0.2"
44
description = "Adapt between ansi_term and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "ansi_term"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-crossterm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-crossterm"
33
version = "2.0.2"
44
description = "Adapt between crossterm and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "crossterm"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-git/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-git"
33
version = "1.1.1"
44
description = "Parse Git Style Descriptions"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "git", "colorparse"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-lossy/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-lossy"
33
version = "1.1.2"
44
description = "Lossy conversion between ANSI Color Codes"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-ls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-ls"
33
version = "1.0.3"
44
description = "Parse LS_COLORS Style Descriptions"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "ls", "colorparse"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-owo-colors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-owo-colors"
33
version = "2.0.2"
44
description = "Adapt between owo-colors and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "owo-colors"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-parse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-parse"
33
version = "0.2.5"
44
description = "Parse ANSI Style Escapes"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "vte"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-query/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "anstyle-query"
33
version = "1.1.1"
44
description = "Look up colored console capabilities"
5-
repository = "https://github.com/rust-cli/anstyle"
65
categories = ["command-line-interface"]
76
keywords = ["cli", "color", "no-std", "terminal", "ansi"]
7+
repository.workspace = true
88
license.workspace = true
99
edition.workspace = true
1010
rust-version.workspace = true

crates/anstyle-roff/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-roff"
33
version = "0.3.4"
44
description = "Adapt between anstyle and roff"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "roff"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-svg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-svg"
33
version = "0.1.5"
44
description = "Convert ANSI escape codes to SVG"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "svg"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-syntect/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-syntect"
33
version = "1.0.2"
44
description = "Adapt between syntect and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "syntect"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-termcolor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-termcolor"
33
version = "1.1.2"
44
description = "Adapt between termcolor and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "termcolor"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-wincon/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-wincon"
33
version = "3.0.4"
44
description = "Styling legacy Windows terminals"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "windows"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle-yansi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle-yansi"
33
version = "2.0.1"
44
description = "Adapt between yansi and anstyle"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "yansi"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/anstyle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "anstyle"
33
version = "1.0.8"
44
description = "ANSI text styling"
5-
repository = "https://github.com/rust-cli/anstyle.git"
65
homepage = "https://github.com/rust-cli/anstyle"
76
categories = ["command-line-interface"]
87
keywords = ["ansi", "terminal", "color", "no_std"]
8+
repository.workspace = true
99
license.workspace = true
1010
edition.workspace = true
1111
rust-version.workspace = true

crates/colorchoice-clap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "colorchoice-clap"
33
version = "1.0.5"
44
description = "Clap mixin to override console colors"
5-
repository = "https://github.com/rust-cli/anstyle"
65
categories = ["command-line-interface"]
76
keywords = ["clap", "cli", "color", "terminal", "ansi"]
7+
repository.workspace = true
88
license.workspace = true
99
edition.workspace = true
1010
rust-version.workspace = true

crates/colorchoice/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
name = "colorchoice"
33
version = "1.0.2"
44
description = "Global override of color control"
5-
repository = "https://github.com/rust-cli/anstyle"
65
categories = ["command-line-interface"]
76
keywords = ["cli", "color", "no-std", "terminal", "ansi"]
7+
repository.workspace = true
88
license.workspace = true
99
edition.workspace = true
1010
rust-version.workspace = true

0 commit comments

Comments
 (0)