diff --git a/Cargo.toml b/Cargo.toml index da747d7..f653dda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,12 +23,16 @@ clipboard-win = "3.0.2" [target.'cfg(target_os = "macos")'.dependencies] objc2 = "0.5.1" -objc2-foundation = { version = "0.2.0", features = [ +objc2-foundation = { version = "0.2.0", default-features = false, features = [ + "std", "NSArray", "NSString", "NSURL", ] } -objc2-app-kit = { version = "0.2.0", features = ["NSPasteboard"] } +objc2-app-kit = { version = "0.2.0", default-features = false, features = [ + "std", + "NSPasteboard", +] } [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="ios", target_os="emscripten"))))'.dependencies] x11-clipboard = { version = "0.9.1", optional = true }