How to put the nightly flags on .cargo/config.toml #77
-
I'm building a tauri app and on android using the following command: |
Beta Was this translation helpful? Give feedback.
Answered by
lucascompython
Dec 28, 2024
Replies: 2 comments
-
I think the following would work:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
I've found that if I put this in [unstable]
build-std = ["std", "panic_abort"]
build-std-features = ["optimize_for_size", "panic_immediate_abort"]
trim-paths = true It works. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
johnthagen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've found that if I put this in
cargo.toml
:It works.
Thanks!