You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following through from matrix-org/matrix-rust-sdk#4416, matrix-rust-sdk uses the reldbg profile by default. This cannot be selected via UBRN though because we only have a --release flag that switches between the debug and release profiles.
Adding --profile reldbg via cargoExtras does not work because UBRN will still look for the library under the debug or release folder.
Proposal: Add a profile config / CLI option to select the specific profile. If both profile and release are specified, let profile take precedence (as in matrix-rust-sdk).
The text was updated successfully, but these errors were encountered:
Following through from matrix-org/matrix-rust-sdk#4416, matrix-rust-sdk uses the
reldbg
profile by default. This cannot be selected via UBRN though because we only have a--release
flag that switches between thedebug
andrelease
profiles.Adding
--profile reldbg
viacargoExtras
does not work because UBRN will still look for the library under thedebug
orrelease
folder.Proposal: Add a
profile
config / CLI option to select the specific profile. If bothprofile
andrelease
are specified, letprofile
take precedence (as in matrix-rust-sdk).The text was updated successfully, but these errors were encountered: