|
13 | 13 | //! long as the manifest itself is kept secure. |
14 | 14 | //! |
15 | 15 | //! The `filepack` library crate is not intended for general consumption, and |
16 | | -//! exists mainly to facilitate code-sharing between the `filepack` binary and |
17 | | -//! integration tests. As such, it provides no semantic versioning guarantees. |
| 16 | +//! exists only to facilitate code-sharing between the `filepack` binary and |
| 17 | +//! integration tests. As such, it should not be used by outside consumers, and |
| 18 | +//! provides no semantic versioning guarantees. |
18 | 19 |
|
19 | 20 | use { |
20 | 21 | self::{ |
|
54 | 55 | public_key_error::PublicKeyError, |
55 | 56 | sign_options::SignOptions, |
56 | 57 | signature_error::SignatureError, |
57 | | - signature_scheme::{SignatureScheme, SignatureSchemeType}, |
| 58 | + signature_scheme::SignatureSchemeType, |
58 | 59 | style::Style, |
59 | 60 | subcommand::Subcommand, |
60 | 61 | tag::Tag, |
@@ -105,7 +106,7 @@ pub use self::{ |
105 | 106 | directory::Directory, entry::Entry, error::Error, file::File, fingerprint::Fingerprint, |
106 | 107 | hash::Hash, manifest::Manifest, message::Message, note::Note, private_key::PrivateKey, |
107 | 108 | public_key::PublicKey, relative_path::RelativePath, serialized_message::SerializedMessage, |
108 | | - signature::Signature, |
| 109 | + signature::Signature, signature_scheme::SignatureScheme, |
109 | 110 | }; |
110 | 111 |
|
111 | 112 | #[cfg(test)] |
@@ -194,10 +195,6 @@ mod tag; |
194 | 195 | mod ticked; |
195 | 196 | mod utf8_path_ext; |
196 | 197 |
|
197 | | -#[cfg(test)] |
198 | | -mod pgp; |
199 | | -#[cfg(test)] |
200 | | -mod ssh; |
201 | 198 | #[cfg(test)] |
202 | 199 | mod test; |
203 | 200 |
|
|
0 commit comments