Skip to content

Commit fd54fc4

Browse files
committed
oops wrong signature
1 parent 8f96150 commit fd54fc4

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

isideload/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "isideload"
33
description = "Sideload iOS/iPadOS applications"
44
license = "MIT"
55
authors = ["Nicholas Sharp <nab@nabdev.me>"]
6-
version = "0.3.3"
6+
version = "0.3.4"
77
edition = "2024"
88
repository = "https://github.com/nab138/isideload"
99
documentation = "https://docs.rs/isideload"

isideload/src/sideload/sideloader.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl Sideloader {
7272
) -> Result<(PathBuf, Option<SpecialApp>), Report>
7373
where
7474
F: Fn(f32) -> Fut,
75-
Fut: Future<Output = String>,
75+
Fut: Future<Output = ()>,
7676
{
7777
let team = match team {
7878
Some(t) => t,
@@ -215,7 +215,7 @@ impl Sideloader {
215215
) -> Result<Option<SpecialApp>, Report>
216216
where
217217
F: Fn(f32) -> Fut,
218-
Fut: Future<Output = String>,
218+
Fut: Future<Output = ()>,
219219
{
220220
let device_info = IdeviceInfo::from_device(device_provider).await?;
221221

isideload/src/sideload/sign.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub fn sign<F, Fut>(
2424
) -> Result<(), Report>
2525
where
2626
F: Fn(f32) -> Fut,
27-
Fut: Future<Output = String>,
27+
Fut: Future<Output = ()>,
2828
{
2929
let mut settings = signing_settings(cert_identity)?;
3030
let entitlements: Dictionary =

0 commit comments

Comments
 (0)