Since protobuf has removed MessageStatic in version 1.6.0, including rusty_secrets as a dependency in Cargo.toml now leads to build failure.
To reproduce this, create a new Rust project with cargo new, add the dependency rusty_secrets = "0.2.1" and build this project with cargo build.
This happens even though protobuf version is pinned to 1.5.1 in the Cargo.lock file.
Since
protobufhas removedMessageStaticin version1.6.0, includingrusty_secretsas a dependency inCargo.tomlnow leads to build failure.To reproduce this, create a new Rust project with
cargo new, add the dependencyrusty_secrets = "0.2.1"and build this project withcargo build.This happens even though
protobufversion is pinned to1.5.1in theCargo.lockfile.