-
Notifications
You must be signed in to change notification settings - Fork 239
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
mention uniffi_macros = "*" in the rust book #1645
Comments
I don't think that's true, eg, here's a Cargo.toml referencing 0.24 without any such requirement. |
Strange. If you think so you may be right. |
Also facing this with uniffi==0.24.3, adding uniffi_macros="*" did fix this. |
@gogo2464 I have the same issue. PLEASE add this in the book |
I may do this this week. |
See above - |
I don't see where this project calls |
Hello. I am sorry that I did not do it yet. Do you still would like I do it? I could add it to the book REALLY this week if you like. |
It is not necessary to have |
since 0.23 uniffi_macros = "*" must be included in Cargo.toml with
[dependencies]
uniffi = {version = "", features = [ "cli" ]}
uniffi_macros = ""
uniffi_bindgen = "*"
in order to avoid a uniffi_bindgen build fail with:
error[E0425]: cannot find function
uniffi_bindgen_main
in crateuniffi
--> uniffi-bindgen.rs:2:13
|
2 | uniffi::uniffi_bindgen_main()
| ^^^^^^^^^^^^^^^^^^^ not found in
uniffi
IT sounds necessary. Fell free to tell me if you have same issue. I may document it and be assigend in the issue if necessary.
The text was updated successfully, but these errors were encountered: