mirror of
https://github.com/nab138/isideload.git
synced 2026-03-02 14:36: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 idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};
|
||||||
use isideload::{
|
use isideload::{
|
||||||
AnisetteConfiguration, AppleAccount, DeveloperSession, SideloadConfiguration,
|
AnisetteConfiguration, AppleAccount, SideloadConfiguration,
|
||||||
sideload::sideload_app,
|
developer_session::DeveloperSession, sideload::sideload_app,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ use std::{env, path::PathBuf, sync::Arc};
|
|||||||
|
|
||||||
use idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};
|
use idevice::usbmuxd::{UsbmuxdAddr, UsbmuxdConnection};
|
||||||
use isideload::{
|
use isideload::{
|
||||||
AnisetteConfiguration, AppleAccount, DeveloperSession, SideloadConfiguration,
|
AnisetteConfiguration, AppleAccount, SideloadConfiguration,
|
||||||
sideload::sideload_app,
|
developer_session::DeveloperSession, sideload::sideload_app,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ use std::{future::Future, path::Path};
|
|||||||
use crate::Error;
|
use crate::Error;
|
||||||
|
|
||||||
/// Installs an ***already signed*** app onto your device.
|
/// Installs an ***already signed*** app onto your device.
|
||||||
|
/// To sign and install an app, see [`crate::sideload::sideload_app`]
|
||||||
pub async fn install_app(
|
pub async fn install_app(
|
||||||
provider: &impl IdeviceProvider,
|
provider: &impl IdeviceProvider,
|
||||||
app_path: &Path,
|
app_path: &Path,
|
||||||
|
|||||||
@@ -7,12 +7,9 @@ pub mod sideload;
|
|||||||
|
|
||||||
use std::io::Error as IOError;
|
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};
|
pub use icloud_auth::{AnisetteConfiguration, AppleAccount};
|
||||||
|
|
||||||
|
use developer_session::DeveloperTeam;
|
||||||
use idevice::IdeviceError;
|
use idevice::IdeviceError;
|
||||||
use thiserror::Error as ThisError;
|
use thiserror::Error as ThisError;
|
||||||
use zsign_rust::ZSignError;
|
use zsign_rust::ZSignError;
|
||||||
|
|||||||
Reference in New Issue
Block a user