From 8f8e46bf43b9908827f576e4f8b3629df01ed3ee Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 11 May 2022 15:57:29 +0200 Subject: sq: Add the cryptographic backend to the version string. --- sq/src/sq_cli.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sq') diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs index d154ac5c..e9904085 100644 --- a/sq/src/sq_cli.rs +++ b/sq/src/sq_cli.rs @@ -23,9 +23,10 @@ pub fn configure( feature_autocrypt: bool, ) -> App<'static, 'static> { let version = Box::leak( - format!("{} (sequoia-openpgp {})", + format!("{} (sequoia-openpgp {}, using {})", env!("CARGO_PKG_VERSION"), - sequoia_openpgp::VERSION) + sequoia_openpgp::VERSION, + sequoia_openpgp::crypto::backend()) .into_boxed_str()) as &str; let app = app -- cgit v1.2.3