Add repository URL for published crates' missing [package.repository] fields

This commit is contained in:
Vincent Esche 2024-07-30 14:11:16 +02:00
parent b5b0f4bc5a
commit 6f329e6d5b
31 changed files with 31 additions and 0 deletions

View file

@ -1,6 +1,7 @@
[package] [package]
name = "base-db" name = "base-db"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Basic database traits. The concrete DB is defined by `ra_ap_ide`." description = "Basic database traits. The concrete DB is defined by `ra_ap_ide`."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "cfg" name = "cfg"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Conditional compiling options, `cfg` attribute parser and evaluator." description = "Conditional compiling options, `cfg` attribute parser and evaluator."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "flycheck" name = "flycheck"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Functionality needed to run `cargo` commands in a background thread." description = "Functionality needed to run `cargo` commands in a background thread."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "hir-def" name = "hir-def"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Everything between macro expansion and type inference for rust-analyzer." description = "Everything between macro expansion and type inference for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "hir-expand" name = "hir-expand"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Macro expansion for rust-analyzer." description = "Macro expansion for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "hir-ty" name = "hir-ty"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "The type system for rust-analyzer." description = "The type system for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "hir" name = "hir"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A high-level object oriented access to Rust code." description = "A high-level object oriented access to Rust code."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "ide-assists" name = "ide-assists"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Code assists for rust-analyzer." description = "Code assists for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "ide-completion" name = "ide-completion"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Utilities for generating completions of user input." description = "Utilities for generating completions of user input."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "ide-db" name = "ide-db"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Core data-structure representing IDE state." description = "Core data-structure representing IDE state."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "ide-diagnostics" name = "ide-diagnostics"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Diagnostics rendering and fixits." description = "Diagnostics rendering and fixits."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "ide" name = "ide"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "IDE-centric APIs for rust-analyzer." description = "IDE-centric APIs for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "intern" name = "intern"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Global `Arc`-based object interning infrastructure." description = "Global `Arc`-based object interning infrastructure."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "limit" name = "limit"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A struct to enforce limits." description = "A struct to enforce limits."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "load-cargo" name = "load-cargo"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Loads a Cargo project into a static instance of analysis." description = "Loads a Cargo project into a static instance of analysis."
rust-version.workspace = true rust-version.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "mbe" name = "mbe"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Handling of `macro_rules` macros for rust-analyzer." description = "Handling of `macro_rules` macros for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "parser" name = "parser"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "The Rust parser for rust-analyzer." description = "The Rust parser for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "paths" name = "paths"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Path wrappers for absolute and relative paths." description = "Path wrappers for absolute and relative paths."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "proc-macro-api" name = "proc-macro-api"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Client-side proc-macros for rust-analyzer." description = "Client-side proc-macros for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "proc-macro-srv-cli" name = "proc-macro-srv-cli"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A standalone binary for `proc-macro-srv`." description = "A standalone binary for `proc-macro-srv`."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "proc-macro-srv" name = "proc-macro-srv"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Proc-macro server for rust-analyzer." description = "Proc-macro server for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "profile" name = "profile"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A collection of tools for profiling rust-analyzer." description = "A collection of tools for profiling rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "project-model" name = "project-model"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A representation for a Cargo project for rust-analyzer." description = "A representation for a Cargo project for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "span" name = "span"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "File and span related types for rust-analyzer." description = "File and span related types for rust-analyzer."
rust-version.workspace = true rust-version.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "stdx" name = "stdx"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Missing batteries for standard libraries for rust-analyzer." description = "Missing batteries for standard libraries for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "test-utils" name = "test-utils"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Assorted testing utilities for rust-analyzer." description = "Assorted testing utilities for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "text-edit" name = "text-edit"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Representation of a `TextEdit` for rust-analyzer." description = "Representation of a `TextEdit` for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "toolchain" name = "toolchain"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Discovery of `cargo` & `rustc` executables for rust-analyzer." description = "Discovery of `cargo` & `rustc` executables for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "tt" name = "tt"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A `TokenTree` data structure for rust-analyzer." description = "A `TokenTree` data structure for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "vfs-notify" name = "vfs-notify"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Implementation of `loader::Handle` for rust-analyzer." description = "Implementation of `loader::Handle` for rust-analyzer."
authors.workspace = true authors.workspace = true

View file

@ -1,6 +1,7 @@
[package] [package]
name = "vfs" name = "vfs"
version = "0.0.0" version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "A virtual file system for rust-analyzer." description = "A virtual file system for rust-analyzer."
authors.workspace = true authors.workspace = true