From 8a4b1fd96edf6a8e6b98d3e38c08b607ceb414f5 Mon Sep 17 00:00:00 2001 From: Lukas Wirth Date: Sun, 7 Jul 2024 09:19:09 +0200 Subject: [PATCH] Fix stale reference in architecture.md --- Cargo.toml | 1 - docs/dev/architecture.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eea73ac380..bea77b9c85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,6 @@ ra-ap-rustc_abi = { version = "0.53.0", default-features = false } ra-ap-rustc_pattern_analysis = { version = "0.53.0", default-features = false } # local crates that aren't published to crates.io. These should not have versions. -sourcegen = { path = "./crates/sourcegen" } test-fixture = { path = "./crates/test-fixture" } test-utils = { path = "./crates/test-utils" } diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index 4303a800a0..f4e7263868 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md @@ -368,7 +368,7 @@ In particular, we generate: * Documentation tests for assists -See the `sourcegen` crate for details. +See the `xtask\src\codegen\assists_doc_tests.rs` module for details. **Architecture Invariant:** we avoid bootstrapping. For codegen we need to parse Rust code.