What changed, and why it matters
This is a minor code-style cleanup in the Rust trezor-client library. It adds an empty placeholder feature flag named 'evolu' to the package manifest and removes an unused public re-export of the Solana module. There is no functional or security change visible in the diff.
No security action required. Treat as routine lint/style maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies rust/trezor-client/Cargo.toml to add a new feature ‘evolu’ with no associated dependencies or code, and edits rust/trezor-client/src/client/mod.rs to delete the pub use solana::*; re-export while keeping the mod solana; declaration behind the existing cfg(feature = "solana") guard. The change is labeled as style/lints and explicitly marked [no changelog].
Changed components
rust/trezor-client/Cargo.tomlrust/trezor-client/src/client/mod.rsInspect captured patch +1 / −2
diff --git a/rust/trezor-client/Cargo.toml b/rust/trezor-client/Cargo.toml
index 9c1f9b486..7684369cf 100644
--- a/rust/trezor-client/Cargo.toml
+++ b/rust/trezor-client/Cargo.toml
@@ -65,6 +65,7 @@ ethereum = []
# Just bindings to the Trezor protobufs
cardano = []
eos = []
+evolu = []
monero = []
nem = []
nostr = []
diff --git a/rust/trezor-client/src/client/mod.rs b/rust/trezor-client/src/client/mod.rs
index 338b3671a..6dd54026e 100644
--- a/rust/trezor-client/src/client/mod.rs
+++ b/rust/trezor-client/src/client/mod.rs
@@ -10,8 +10,6 @@ pub use ethereum::*;
#[cfg(feature = "solana")]
mod solana;
-#[cfg(feature = "solana")]
-pub use solana::*;
pub mod common;
pub use common::*;
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.