Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--Cargo.toml1
-rw-r--r--crates/base-db/Cargo.toml2
-rw-r--r--crates/cfg/Cargo.toml2
-rw-r--r--crates/flycheck/Cargo.toml2
-rw-r--r--crates/hir-def/Cargo.toml2
-rw-r--r--crates/hir-expand/Cargo.toml2
-rw-r--r--crates/hir-ty/Cargo.toml2
-rw-r--r--crates/hir/Cargo.toml2
-rw-r--r--crates/ide-assists/Cargo.toml2
-rw-r--r--crates/ide-completion/Cargo.toml2
-rw-r--r--crates/ide-db/Cargo.toml2
-rw-r--r--crates/ide-diagnostics/Cargo.toml2
-rw-r--r--crates/ide-ssr/Cargo.toml2
-rw-r--r--crates/ide/Cargo.toml2
-rw-r--r--crates/intern/Cargo.toml2
-rw-r--r--crates/limit/Cargo.toml2
-rw-r--r--crates/load-cargo/Cargo.toml2
-rw-r--r--crates/mbe/Cargo.toml2
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/paths/Cargo.toml2
-rw-r--r--crates/proc-macro-api/Cargo.toml2
-rw-r--r--crates/proc-macro-srv-cli/Cargo.toml2
-rw-r--r--crates/proc-macro-srv/Cargo.toml2
-rw-r--r--crates/profile/Cargo.toml2
-rw-r--r--crates/project-model/Cargo.toml2
-rw-r--r--crates/rust-analyzer/Cargo.toml2
-rw-r--r--crates/span/Cargo.toml2
-rw-r--r--crates/stdx/Cargo.toml2
-rw-r--r--crates/syntax/Cargo.toml2
-rw-r--r--crates/test-utils/Cargo.toml2
-rw-r--r--crates/text-edit/Cargo.toml2
-rw-r--r--crates/toolchain/Cargo.toml2
-rw-r--r--crates/tt/Cargo.toml2
-rw-r--r--crates/vfs-notify/Cargo.toml2
-rw-r--r--crates/vfs/Cargo.toml2
35 files changed, 35 insertions, 34 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d56d941dbf..4e83484069 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,6 +8,7 @@ rust-version = "1.78"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer team"]
+repository = "https://github.com/rust-lang/rust-analyzer"
[profile.dev]
debug = 1
diff --git a/crates/base-db/Cargo.toml b/crates/base-db/Cargo.toml
index f5f51650fa..b17b08a720 100644
--- a/crates/base-db/Cargo.toml
+++ b/crates/base-db/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "base-db"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Basic database traits for rust-analyzer. The concrete DB is defined by `ide` (aka `ra_ap_ide`)."
authors.workspace = true
diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml
index 6a8a638d9e..29b7ad6f8f 100644
--- a/crates/cfg/Cargo.toml
+++ b/crates/cfg/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "cfg"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Conditional compiling options, `cfg` attribute parser and evaluator for rust-analyzer."
authors.workspace = true
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml
index d3b3ffc11f..a7f6e296d3 100644
--- a/crates/flycheck/Cargo.toml
+++ b/crates/flycheck/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "flycheck"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Functionality needed for rust-analyzer to run `cargo` commands in a background thread."
authors.workspace = true
diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml
index 3a5a7c3e70..5b9d227e31 100644
--- a/crates/hir-def/Cargo.toml
+++ b/crates/hir-def/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hir-def"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "RPC Api for the `proc-macro-srv` crate of rust-analyzer."
authors.workspace = true
diff --git a/crates/hir-expand/Cargo.toml b/crates/hir-expand/Cargo.toml
index 1fabbda7f3..03a9d54d2e 100644
--- a/crates/hir-expand/Cargo.toml
+++ b/crates/hir-expand/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hir-expand"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Macro expansion for rust-analyzer."
authors.workspace = true
diff --git a/crates/hir-ty/Cargo.toml b/crates/hir-ty/Cargo.toml
index 0b39f71a3c..b079b5675b 100644
--- a/crates/hir-ty/Cargo.toml
+++ b/crates/hir-ty/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hir-ty"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "The type system for rust-analyzer."
authors.workspace = true
diff --git a/crates/hir/Cargo.toml b/crates/hir/Cargo.toml
index 9689ca94a5..324fa1c6a8 100644
--- a/crates/hir/Cargo.toml
+++ b/crates/hir/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hir"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A high-level object-oriented access to Rust code for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide-assists/Cargo.toml b/crates/ide-assists/Cargo.toml
index a236a01928..df52562b6a 100644
--- a/crates/ide-assists/Cargo.toml
+++ b/crates/ide-assists/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide-assists"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Code assists for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide-completion/Cargo.toml b/crates/ide-completion/Cargo.toml
index a0cf6ec4f8..035b2fc0db 100644
--- a/crates/ide-completion/Cargo.toml
+++ b/crates/ide-completion/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide-completion"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Utilities for generating completions of user input for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml
index 275542ab4d..6714a99f80 100644
--- a/crates/ide-db/Cargo.toml
+++ b/crates/ide-db/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide-db"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Core data structure representing IDE state for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide-diagnostics/Cargo.toml b/crates/ide-diagnostics/Cargo.toml
index 1a3e14c7c7..9c3a279a94 100644
--- a/crates/ide-diagnostics/Cargo.toml
+++ b/crates/ide-diagnostics/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide-diagnostics"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Diagnostics rendering and fixits for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide-ssr/Cargo.toml b/crates/ide-ssr/Cargo.toml
index 9c6f69a8ea..fad62fa3b9 100644
--- a/crates/ide-ssr/Cargo.toml
+++ b/crates/ide-ssr/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide-ssr"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Structural search and replace of Rust code for rust-analyzer."
authors.workspace = true
diff --git a/crates/ide/Cargo.toml b/crates/ide/Cargo.toml
index 016ed1997d..d976d604f1 100644
--- a/crates/ide/Cargo.toml
+++ b/crates/ide/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ide"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "IDE-centric APIs for rust-analyzer."
authors.workspace = true
diff --git a/crates/intern/Cargo.toml b/crates/intern/Cargo.toml
index bd9032e051..5e7ee54c6a 100644
--- a/crates/intern/Cargo.toml
+++ b/crates/intern/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "intern"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Global `Arc`-based object interning infrastructure for rust-analyzer."
authors.workspace = true
diff --git a/crates/limit/Cargo.toml b/crates/limit/Cargo.toml
index 634c3b3513..30666f5219 100644
--- a/crates/limit/Cargo.toml
+++ b/crates/limit/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "limit"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A struct to enforce limits for rust-analyzer."
authors.workspace = true
diff --git a/crates/load-cargo/Cargo.toml b/crates/load-cargo/Cargo.toml
index fde42ef871..23fd50a056 100644
--- a/crates/load-cargo/Cargo.toml
+++ b/crates/load-cargo/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "load-cargo"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Loads a Cargo project into a static instance of rust-analyzer for analysis."
rust-version.workspace = true
diff --git a/crates/mbe/Cargo.toml b/crates/mbe/Cargo.toml
index f1623ca1fc..756d42ef57 100644
--- a/crates/mbe/Cargo.toml
+++ b/crates/mbe/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "mbe"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Handling of `macro_rules` macros for rust-analyzer."
authors.workspace = true
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index d3e763affc..d5255665b4 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "parser"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "The Rust parser for rust-analyzer."
authors.workspace = true
diff --git a/crates/paths/Cargo.toml b/crates/paths/Cargo.toml
index c6a5e08bcd..d4b0a54ed6 100644
--- a/crates/paths/Cargo.toml
+++ b/crates/paths/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "paths"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Path wrappers for absolute and relative paths rust-analyzer."
authors.workspace = true
diff --git a/crates/proc-macro-api/Cargo.toml b/crates/proc-macro-api/Cargo.toml
index 8f74c7c6e4..84b877f026 100644
--- a/crates/proc-macro-api/Cargo.toml
+++ b/crates/proc-macro-api/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "proc-macro-api"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "RPC Api for the `proc-macro-srv` crate of rust-analyzer."
authors.workspace = true
diff --git a/crates/proc-macro-srv-cli/Cargo.toml b/crates/proc-macro-srv-cli/Cargo.toml
index 12f4d9d963..1c394513c4 100644
--- a/crates/proc-macro-srv-cli/Cargo.toml
+++ b/crates/proc-macro-srv-cli/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "proc-macro-srv-cli"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A standalone binary for the `proc-macro-srv` crate of rust-analyzer."
authors.workspace = true
diff --git a/crates/proc-macro-srv/Cargo.toml b/crates/proc-macro-srv/Cargo.toml
index 8c760bf849..e8d9677c92 100644
--- a/crates/proc-macro-srv/Cargo.toml
+++ b/crates/proc-macro-srv/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "proc-macro-srv"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Proc-macro server for rust-analyzer."
authors.workspace = true
diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml
index b1a4c6f410..2e3413f339 100644
--- a/crates/profile/Cargo.toml
+++ b/crates/profile/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "profile"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A collection of tools for profiling rust-analyzer."
authors.workspace = true
diff --git a/crates/project-model/Cargo.toml b/crates/project-model/Cargo.toml
index 46cd7a1e3c..68e0e1ba55 100644
--- a/crates/project-model/Cargo.toml
+++ b/crates/project-model/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "project-model"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A representation for a Cargo project for rust-analyzer."
authors.workspace = true
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml
index 3983e52cd1..6aa2789c5e 100644
--- a/crates/rust-analyzer/Cargo.toml
+++ b/crates/rust-analyzer/Cargo.toml
@@ -2,7 +2,7 @@
name = "rust-analyzer"
version = "0.0.0"
homepage = "https://rust-analyzer.github.io/"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A language server for the Rust programming language"
documentation = "https://rust-analyzer.github.io/manual.html"
autobins = false
diff --git a/crates/span/Cargo.toml b/crates/span/Cargo.toml
index d072860320..3381dac0b4 100644
--- a/crates/span/Cargo.toml
+++ b/crates/span/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "span"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "File and span related types for rust-analyzer."
rust-version.workspace = true
diff --git a/crates/stdx/Cargo.toml b/crates/stdx/Cargo.toml
index 7b6c54eff0..77c9f3cb14 100644
--- a/crates/stdx/Cargo.toml
+++ b/crates/stdx/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "stdx"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Missing batteries for standard libraries for rust-analyzer."
authors.workspace = true
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml
index ed99bc794f..994c21469f 100644
--- a/crates/syntax/Cargo.toml
+++ b/crates/syntax/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "syntax"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Concrete syntax tree definitions for rust-analyzer."
authors.workspace = true
diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml
index 2d64893434..b1457722a9 100644
--- a/crates/test-utils/Cargo.toml
+++ b/crates/test-utils/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "test-utils"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Assorted testing utilities for rust-analyzer."
authors.workspace = true
diff --git a/crates/text-edit/Cargo.toml b/crates/text-edit/Cargo.toml
index d8d72dcde3..dc6b3d31a0 100644
--- a/crates/text-edit/Cargo.toml
+++ b/crates/text-edit/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "text-edit"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Representation of a `TextEdit` for rust-analyzer."
authors.workspace = true
diff --git a/crates/toolchain/Cargo.toml b/crates/toolchain/Cargo.toml
index a5eb66e53a..87e8efb20f 100644
--- a/crates/toolchain/Cargo.toml
+++ b/crates/toolchain/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "toolchain"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Discovery of `cargo` & `rustc` executables for rust-analyzer."
authors.workspace = true
diff --git a/crates/tt/Cargo.toml b/crates/tt/Cargo.toml
index 092faeeef2..82e7c24668 100644
--- a/crates/tt/Cargo.toml
+++ b/crates/tt/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "tt"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A `TokenTree` data structure for rust-analyzer."
authors.workspace = true
diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml
index 3b22952e2b..d2f7079915 100644
--- a/crates/vfs-notify/Cargo.toml
+++ b/crates/vfs-notify/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "vfs-notify"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "Implementation of `loader::Handle` for rust-analyzer."
authors.workspace = true
diff --git a/crates/vfs/Cargo.toml b/crates/vfs/Cargo.toml
index 6653863d92..c6f34e2af0 100644
--- a/crates/vfs/Cargo.toml
+++ b/crates/vfs/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "vfs"
version = "0.0.0"
-repository = "https://github.com/rust-lang/rust-analyzer"
+repository.workspace = true
description = "A virtual file system for rust-analyzer."
authors.workspace = true