Skip to content

Commit

Permalink
Export notary api.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvc94ch authored and indygreg committed Dec 21, 2022
1 parent 1896a9d commit d5e608a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apple-codesign/src/notarization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and waiting on the availability of a notarization ticket.

use {
crate::{reader::PathType, AppleCodesignError},
app_store_connect::{notary_api, AppStoreConnectClient, ConnectTokenEncoder, UnifiedApiKey},
app_store_connect::{AppStoreConnectClient, ConnectTokenEncoder, UnifiedApiKey},
apple_bundles::DirectoryBundle,
aws_sdk_s3::{Credentials, Region},
aws_smithy_http::byte_stream::ByteStream,
Expand All @@ -28,6 +28,7 @@ use {
time::Duration,
},
};
pub use app_store_connect::notary_api;

fn digest<H: Digest, R: Read>(reader: &mut R) -> Result<(u64, Vec<u8>), AppleCodesignError> {
let mut hasher = H::new();
Expand Down

0 comments on commit d5e608a

Please sign in to comment.