Skip to content

Commit 7dec7e9

Browse files
committed
Replace [package.repository] = "…" of published crates with [package.repository.workspace] = true
1 parent 624f2ea commit 7dec7e9

File tree

35 files changed

+35
-34
lines changed

35 files changed

+35
-34
lines changed

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

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

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

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

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

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

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

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

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

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

crates/ide-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 = "ide-db"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Core data structure representing IDE state for rust-analyzer."
66

77
authors.workspace = true

crates/ide-diagnostics/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-diagnostics"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Diagnostics rendering and fixits for rust-analyzer."
66

77
authors.workspace = true

crates/ide-ssr/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-ssr"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Structural search and replace of Rust code for rust-analyzer."
66

77
authors.workspace = true

crates/ide/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"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "IDE-centric APIs for rust-analyzer."
66

77
authors.workspace = true

crates/intern/Cargo.toml

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

77
authors.workspace = true

crates/limit/Cargo.toml

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

77
authors.workspace = true

crates/load-cargo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "load-cargo"
33
version = "0.0.0"
4-
repository = "https://github.com/rust-lang/rust-analyzer"
4+
repository.workspace = true
55
description = "Loads a Cargo project into a static instance of rust-analyzer for analysis."
66

77
rust-version.workspace = true

crates/mbe/Cargo.toml

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

77
authors.workspace = true

crates/parser/Cargo.toml

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

77
authors.workspace = true

crates/paths/Cargo.toml

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

77
authors.workspace = true

crates/proc-macro-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "proc-macro-api"
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

crates/proc-macro-srv-cli/Cargo.toml

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

77
authors.workspace = true

crates/proc-macro-srv/Cargo.toml

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

77
authors.workspace = true

crates/profile/Cargo.toml

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

77
authors.workspace = true

crates/project-model/Cargo.toml

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

77
authors.workspace = true

crates/rust-analyzer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rust-analyzer"
33
version = "0.0.0"
44
homepage = "https://rust-analyzer.github.io/"
5-
repository = "https://github.com/rust-lang/rust-analyzer"
5+
repository.workspace = true
66
description = "A language server for the Rust programming language"
77
documentation = "https://rust-analyzer.github.io/manual.html"
88
autobins = false

crates/span/Cargo.toml

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

77
rust-version.workspace = true

crates/stdx/Cargo.toml

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

77
authors.workspace = true

crates/syntax/Cargo.toml

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

77
authors.workspace = true

crates/test-utils/Cargo.toml

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

77
authors.workspace = true

crates/text-edit/Cargo.toml

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

77
authors.workspace = true

crates/toolchain/Cargo.toml

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

77
authors.workspace = true

crates/tt/Cargo.toml

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

77
authors.workspace = true

crates/vfs-notify/Cargo.toml

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

77
authors.workspace = true

crates/vfs/Cargo.toml

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

77
authors.workspace = true

0 commit comments

Comments
 (0)