Skip to content

Commit ba24d16

Browse files
madsmtmqdot
authored andcommitted
Remove direct libc dependency
1 parent cf9f7bd commit ba24d16

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ objc2-foundation = { version = "0.2.0", features = [
5959
"NSUUID",
6060
"NSValue",
6161
] }
62-
libc = "0.2.151"
6362

6463
[target.'cfg(target_os = "windows")'.dependencies]
6564
windows = { version = "0.52.0", features = ["Devices_Bluetooth", "Devices_Bluetooth_GenericAttributeProfile", "Devices_Bluetooth_Advertisement", "Devices_Radios", "Foundation_Collections", "Foundation", "Storage_Streams"] }

src/corebluetooth/central_delegate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use super::{
2525
};
2626
use futures::channel::mpsc::{self, Receiver, Sender};
2727
use futures::sink::SinkExt;
28-
use libc::c_void;
2928
use log::{error, trace};
3029
use objc2::runtime::{
3130
AnyClass as Class, AnyObject as Object, AnyProtocol as Protocol, ClassBuilder, Sel,
@@ -36,6 +35,7 @@ use std::{
3635
collections::HashMap,
3736
fmt::{self, Debug, Formatter},
3837
ops::Deref,
38+
os::raw::c_void,
3939
sync::Once,
4040
};
4141
use uuid::Uuid;

0 commit comments

Comments
 (0)