-
-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix rustdoc generation of Windows and Mac on docs.rs, fix #503 #507
Conversation
Are you sure it builds without the default features? I thought we only needed to use the objc/exception feature as a default feature. |
No, it's not. That's why I set the features need to use in docs.rs |
Cargo.toml
Outdated
@@ -78,5 +78,5 @@ sys-info = "0.9" | |||
[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies] | |||
cocoa = "0.24" | |||
core-graphics = "0.22" | |||
objc = { version = "0.2", features = [ "exception" ] } | |||
objc = { version = "0.2", features = ["exception"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you still need to remove the feature here right? since it's enabled with default features now
What kind of change does this PR introduce?
Does this PR introduce a breaking change?
Checklist
fix: remove a typo, closes #___, #___
)Other information