From 35b310a8a794f8bd2cf008eee661ea74126eb417 Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Fri, 18 Aug 2023 09:33:41 +0200 Subject: [PATCH] Better doc --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index da7243e67dd5d..11ce10f87b218 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,14 +31,14 @@ node-cli = { path = "bin/node/cli" } # Dependencies necessary to optionaly build Sassafras related crates. # -# Sassafras requires to enable `bandersnatch-experimental` feature. -# This feature ends up being transitively enabled in: +# Sassafras requires to enable `bandersnatch-experimental` feature and this ends up +# being transitively enabled in: # sp-consensus-sassafras → sp-application-crypto → sp-io → sp-keystore -# Thus the bandersnatch experimental api is exposed in the `Keystore` trait. -# Follow that we require to expose these functions in the client keystore as well. +# Bandersnatch experimental api is thus exposed in the `Keystore` trait and we require +# to expose these functions implementations in the client keystore as well. # At this stage, by default, we don't want this. -# We prefer instead to keep sassafras crates (and thus bandersnatch feature) hidden -# and optionally enabled via the `sassafras-experimental` feature. +# We prefer instead to keep sassafras crates (and thus bandersnatch feature) out of +# workspace and optionally enabled via the `sassafras-experimental` feature. sp-consensus-sassafras = { path = "primitives/consensus/sassafras", optional = true } sc-keystore = { path = "client/keystore" }