feat: v1.11.0, remove swiftc dependency
This commit is contained in:
13
src/main.rs
13
src/main.rs
@@ -33,15 +33,10 @@ mod cmd_pivverify;
|
||||
mod cmd_rsadecrypt;
|
||||
mod cmd_rsaencrypt;
|
||||
mod cmd_rsaverify;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod cmd_se;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod cmd_se_ecdh;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod cmd_se_ecsign;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod cmd_se_generate;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod cmd_se_recover;
|
||||
mod cmd_signfile;
|
||||
mod cmd_signjwt;
|
||||
@@ -68,7 +63,6 @@ mod pinutil;
|
||||
mod pivutil;
|
||||
mod pkiutil;
|
||||
mod rsautil;
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
mod seutil;
|
||||
mod signfile;
|
||||
mod sshutil;
|
||||
@@ -139,15 +133,10 @@ fn inner_main() -> CommandError {
|
||||
Box::new(cmd_signjwtsoft::CommandImpl),
|
||||
Box::new(cmd_signfile::CommandImpl),
|
||||
Box::new(cmd_verifyfile::CommandImpl),
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
Box::new(cmd_se::CommandImpl),
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
Box::new(cmd_se_generate::CommandImpl),
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
Box::new(cmd_se_recover::CommandImpl),
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
Box::new(cmd_se_ecsign::CommandImpl),
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
Box::new(cmd_se_ecdh::CommandImpl),
|
||||
Box::new(cmd_ecverify::CommandImpl),
|
||||
Box::new(cmd_parseecdsasignature::CommandImpl),
|
||||
@@ -159,8 +148,6 @@ fn inner_main() -> CommandError {
|
||||
let mut features: Vec<&str> = vec![];
|
||||
#[cfg(feature = "with-sequoia-openpgp")]
|
||||
features.push("sequoia-openpgp");
|
||||
#[cfg(feature = "with-secure-enclave")]
|
||||
features.push("secure-enclave");
|
||||
features
|
||||
};
|
||||
let about = format!(
|
||||
|
||||
Reference in New Issue
Block a user