summaryrefslogtreecommitdiffstats
path: root/sq/src/commands/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-01-28 11:20:19 +0100
committerJustus Winter <justus@sequoia-pgp.org>2021-01-28 11:20:19 +0100
commit080738631d80e4df4181cd848a02120e7a5e0af8 (patch)
tree252c205e76683053abdb3f8dea2731768f395623 /sq/src/commands/mod.rs
parentd97a6a10067bfc7e7fc95bc280d7cec400dc0615 (diff)
sq: Make Autocrypt support optional.
Diffstat (limited to 'sq/src/commands/mod.rs')
-rw-r--r--sq/src/commands/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/sq/src/commands/mod.rs b/sq/src/commands/mod.rs
index ca0e03e7..6eb0fb74 100644
--- a/sq/src/commands/mod.rs
+++ b/sq/src/commands/mod.rs
@@ -35,6 +35,8 @@ use crate::{
create_or_stdout_pgp,
};
+#[cfg(feature = "autocrypt")]
+pub mod autocrypt;
pub mod decrypt;
pub use self::decrypt::decrypt;
mod sign;