Skip to content
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 rust log forwarder bindings for Focus iOS #5858

Merged
merged 1 commit into from Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,7 @@

### 🦊 What's Changed 🦊
- Exposed rust-log-forwarder for iOS ([#5840](https://github.com/mozilla/application-services/pull/5840)).
- Fixed rust-log-forwarder bindings for Focus iOS ([5858](https://github.com/mozilla/application-services/pull/5858)).

# v119.0 (_2023-09-25_)

Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions megazords/ios-rust/focus/Cargo.toml
Expand Up @@ -10,6 +10,7 @@ crate-type = ["staticlib"]

[dependencies]
rc_log_ffi = { path = "../../../components/rc_log" }
rust-log-forwarder = { path = "../../../components/support/rust-log-forwarder" }
viaduct = { path = "../../../components/viaduct" }
viaduct-reqwest = { path = "../../../components/support/viaduct-reqwest" }
nimbus-sdk = { path = "../../../components/nimbus" }
Expand Down
1 change: 1 addition & 0 deletions megazords/ios-rust/focus/MozillaRustComponents.h
Expand Up @@ -10,3 +10,4 @@
#import "nimbusFFI.h"
#import "errorFFI.h"
#import "remote_settingsFFI.h"
#import "rustlogforwarderFFI.h"
1 change: 1 addition & 0 deletions megazords/ios-rust/focus/src/lib.rs
Expand Up @@ -9,4 +9,5 @@ pub use error_support;
pub use nimbus;
pub use rc_log_ffi;
pub use remote_settings;
pub use rust_log_forwarder;
pub use viaduct_reqwest;