Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 584f954

Browse files
committed
Replace [package.repository] = "…" of published crates with [package.repository.workspace] = true
1 parent e15ffa5 commit 584f954

File tree

35 files changed

+35
-34
lines changed

35 files changed

+35
-34
lines changed

src/tools/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ rust-version = "1.78"
88
edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
authors = ["rust-analyzer team"]
11+
repository = "https://github.com/rust-lang/rust-analyzer"
1112

1213
[profile.dev]
1314
debug = 1

src/tools/rust-analyzer/crates/base-db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "base-db"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Basic database traits for rust-analyzer. The concrete DB is defined by `ide` (aka `ra_ap_ide`)."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/cfg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cfg"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Conditional compiling options, `cfg` attribute parser and evaluator for rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/flycheck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "flycheck"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Functionality needed for rust-analyzer to run `cargo` commands in a background thread."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/hir-def/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hir-def"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "RPC Api for the `proc-macro-srv` crate of rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/hir-expand/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hir-expand"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Macro expansion for rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/hir-ty/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hir-ty"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "The type system for rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hir"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "A high-level object-oriented access to Rust code for rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/ide-assists/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ide-assists"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Code assists for rust-analyzer."
66

77
authors.workspace = true

src/tools/rust-analyzer/crates/ide-completion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ide-completion"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Utilities for generating completions of user input for rust-analyzer."
66

77
authors.workspace = true

0 commit comments

Comments
 (0)