From c6253d82ae642bcdaa066ce22a1ef36b493020aa Mon Sep 17 00:00:00 2001 From: DemoYeti <164791169+DemoYeti@users.noreply.github.com> Date: Tue, 13 Aug 2024 16:15:51 -0400 Subject: [PATCH] doc: show issue source rather than `this issue` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a95a84d5cb..5824ea0354 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ For key management and validator rewards, consult our [validator guide online](h All dependencies should be listed inside the workspace's root `Cargo.toml` file. This allows us to easily change version of a crate used by the entire repo by modifying the version in a single place. -Right now, if **non_std** is required, `default-features = false` must be set in the root `Cargo.toml` file (related to this [issue](https://github.com/rust-lang/cargo/pull/11409)). Otherwise, it will have no effect, causing your compilation to fail. +Right now, if **non_std** is required, `default-features = false` must be set in the root `Cargo.toml` file (related to [rust-lang/cargo#11409](https://github.com/rust-lang/cargo/pull/11409)). Otherwise, it will have no effect, causing your compilation to fail. Also `package` imports aren't properly propagated from root to sub-crates, so defining those should be avoided. Defining _features_ in the root `Cargo.toml` is additive with the features defined in concrete crate's `Cargo.toml`.