Skip to content

Commit ce0a269

Browse files
authored
Prepare for objc2 frameworks v0.3 (#420)
These will have a bunch of default features enabled, so let's pre-emptively disable them.
1 parent 0d0c694 commit ce0a269

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jni-utils = "0.1.1"
4747

4848
[target.'cfg(target_vendor = "apple")'.dependencies]
4949
objc2 = "0.5.2"
50-
objc2-foundation = { version = "0.2.2", features = [
50+
objc2-foundation = { version = "0.2.2", default-features = false, features = [
51+
"std",
5152
"block2",
5253
"NSArray",
5354
"NSData",
@@ -59,7 +60,8 @@ objc2-foundation = { version = "0.2.2", features = [
5960
"NSUUID",
6061
"NSValue",
6162
] }
62-
objc2-core-bluetooth = { version = "0.2.2", features = [
63+
objc2-core-bluetooth = { version = "0.2.2", default-features = false, features = [
64+
"std",
6365
"CBAdvertisementData",
6466
"CBAttribute",
6567
"CBCentralManager",

0 commit comments

Comments
 (0)