From 6c5275edf9dc6d317f8dbb8e3b28dab428430b68 Mon Sep 17 00:00:00 2001 From: Anatoly Date: Mon, 23 Sep 2024 23:15:18 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3a58e847..d6a0d873c 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Defining _features_ in the root `Cargo.toml` is additive with the features defin 1. Check if the dependency is already defined in the root `Cargo.toml` 1. if **yes**, nothing to do, just take note of the enabled features 2. if **no**, add it (make sure to use `default-features = false` if dependency is used in _no_std_ context) -2. Add `new_dependecy = { workspace = true }` to the required crate +2. Add `new_dependency = { workspace = true }` to the required crate 3. In case dependency is defined with `default-features = false` but you need it in _std_ context, add `features = ["std"]` to the required crate. ## Further Reading