mirror of
https://github.com/nab138/isideload.git
synced 2026-03-02 06:26:16 +01:00
Remove unneccesary re-exports
This commit is contained in:
@@ -22,8 +22,8 @@ use std::{env, path::PathBuf, sync::Arc};
|
||||
|
||||
use idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};
|
||||
use isideload::{
|
||||
AnisetteConfiguration, AppleAccount, DeveloperSession, SideloadConfiguration,
|
||||
sideload::sideload_app,
|
||||
AnisetteConfiguration, AppleAccount, SideloadConfiguration,
|
||||
developer_session::DeveloperSession, sideload::sideload_app,
|
||||
};
|
||||
|
||||
#[tokio::main]
|
||||
|
||||
@@ -2,8 +2,8 @@ use std::{env, path::PathBuf, sync::Arc};
|
||||
|
||||
use idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};
|
||||
use isideload::{
|
||||
AnisetteConfiguration, AppleAccount, DeveloperSession, SideloadConfiguration,
|
||||
sideload::sideload_app,
|
||||
AnisetteConfiguration, AppleAccount, SideloadConfiguration,
|
||||
developer_session::DeveloperSession, sideload::sideload_app,
|
||||
};
|
||||
|
||||
#[tokio::main]
|
||||
|
||||
@@ -8,6 +8,7 @@ use std::{future::Future, path::Path};
|
||||
use crate::Error;
|
||||
|
||||
/// Installs an ***already signed*** app onto your device.
|
||||
/// To sign and install an app, see [`crate::sideload::sideload_app`]
|
||||
pub async fn install_app(
|
||||
provider: &impl IdeviceProvider,
|
||||
app_path: &Path,
|
||||
|
||||
@@ -7,12 +7,9 @@ pub mod sideload;
|
||||
|
||||
use std::io::Error as IOError;
|
||||
|
||||
pub use developer_session::{
|
||||
AppId, ApplicationGroup, DeveloperDevice, DeveloperDeviceType, DeveloperSession, DeveloperTeam,
|
||||
DevelopmentCertificate, ListAppIdsResponse, ProvisioningProfile,
|
||||
};
|
||||
pub use icloud_auth::{AnisetteConfiguration, AppleAccount};
|
||||
|
||||
use developer_session::DeveloperTeam;
|
||||
use idevice::IdeviceError;
|
||||
use thiserror::Error as ThisError;
|
||||
use zsign_rust::ZSignError;
|
||||
|
||||
Reference in New Issue
Block a user