-
-
Notifications
You must be signed in to change notification settings - Fork 208
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
v0.2.9 breaks build on ios #218
Comments
Ah yeah, looks like we need to flag the feature off from iOS. |
Dushistov
added a commit
to Dushistov/couchbase-lite-rust
that referenced
this issue
Mar 28, 2022
the problem is bug in native-tls (sfackler/rust-native-tls#218), so mask it for now
Fixed in 0.2.10 |
Dushistov
added a commit
to Dushistov/couchbase-lite-rust
that referenced
this issue
Mar 28, 2022
the problem is bug in native-tls (sfackler/rust-native-tls#218), so mask it for now
I can confirm that 0.2.10 works for us, many thanks for the fast turnaround! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think #209 in v0.2.9 may have broken the build on ios (at least x86_64-apple-ios):
AFAICT all of the relevant
use
statements (fromself::security_framework::os::macos::...
) are under#[cfg(not(target_os = "ios"))]
.Was/is it a macos specific feature or are equivalent imports for ios missing? I guess the former and some more
#[cfg(not(target_os = "ios"))]
are needed somewhere?The text was updated successfully, but these errors were encountered: