diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2025-01-08 08:34:41 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-08 08:34:41 +0000 |
| commit | 7c256e56ce5b802ccbc4935fddaa6f637d3a61aa (patch) | |
| tree | 5c03fdc34f4a9f0ec77320edd0ee4f0142c817a1 | |
| parent | a748001095d131450d526395476ccf10f8ce294d (diff) | |
| parent | cc07c98314b85cc4511bf42d68e7ba405f16e287 (diff) | |
| download | rust-7c256e56ce5b802ccbc4935fddaa6f637d3a61aa.tar.gz rust-7c256e56ce5b802ccbc4935fddaa6f637d3a61aa.zip | |
Merge pull request #18882 from lnicola/publish-test-fixture
minor: Fix `test-fixture` autopublishing
| -rw-r--r-- | src/tools/rust-analyzer/Cargo.toml | 4 | ||||
| -rw-r--r-- | src/tools/rust-analyzer/crates/test-fixture/Cargo.toml | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/Cargo.toml b/src/tools/rust-analyzer/Cargo.toml index 9440123de70..629bd744676 100644 --- a/src/tools/rust-analyzer/Cargo.toml +++ b/src/tools/rust-analyzer/Cargo.toml @@ -79,6 +79,7 @@ span = { path = "./crates/span", version = "0.0.0" } stdx = { path = "./crates/stdx", version = "0.0.0" } syntax = { path = "./crates/syntax", version = "0.0.0" } syntax-bridge = { path = "./crates/syntax-bridge", version = "0.0.0" } +test-fixture = { path = "./crates/test-fixture", version = "0.0.0" } test-utils = { path = "./crates/test-utils", version = "0.0.0" } toolchain = { path = "./crates/toolchain", version = "0.0.0" } tt = { path = "./crates/tt", version = "0.0.0" } @@ -93,9 +94,8 @@ ra-ap-rustc_abi = { version = "0.87", default-features = false } ra-ap-rustc_pattern_analysis = { version = "0.87", default-features = false } # local crates that aren't published to crates.io. These should not have versions. -test-fixture = { path = "./crates/test-fixture" } -# In-tree crates that are published separately and follow semver. See lib/README.md +# in-tree crates that are published separately and follow semver. See lib/README.md line-index = { version = "0.1.2" } la-arena = { version = "0.3.1" } lsp-server = { version = "0.7.6" } diff --git a/src/tools/rust-analyzer/crates/test-fixture/Cargo.toml b/src/tools/rust-analyzer/crates/test-fixture/Cargo.toml index c860e7b1183..95f4cb9d67e 100644 --- a/src/tools/rust-analyzer/crates/test-fixture/Cargo.toml +++ b/src/tools/rust-analyzer/crates/test-fixture/Cargo.toml @@ -2,6 +2,8 @@ name = "test-fixture" version = "0.0.0" rust-version.workspace = true +description = "Test fixtures for rust-analyzer." + edition.workspace = true license.workspace = true authors.workspace = true |
