Unify service naming across crates

This commit is contained in:
Jackson Coxson
2025-04-05 14:30:47 -06:00
parent 21939ae34a
commit f25da81af5
15 changed files with 18 additions and 17 deletions

View File

@@ -2,7 +2,7 @@
// idevice Rust implementation of libimobiledevice's ideviceinfo
use clap::{Arg, Command};
use idevice::{lockdownd::LockdowndClient, pairing_file::PairingFile, IdeviceService};
use idevice::{lockdown::LockdowndClient, pairing_file::PairingFile, IdeviceService};
mod common;

View File

@@ -5,7 +5,8 @@ use std::{io::Write, path::PathBuf};
use clap::{arg, value_parser, Arg, Command};
use idevice::{
lockdownd::LockdowndClient, mounter::ImageMounter, pretty_print_plist, IdeviceService,
lockdown::LockdowndClient, mobile_image_mounter::ImageMounter, pretty_print_plist,
IdeviceService,
};
mod common;