Christian Fochler
Christian Fochler
Adding the following lines to `devcontainer.json` fixed it for me. ```json "containerEnv": { "GRADLE_USER_HOME": "/home/vscode/.gradle" } ```
@baywet sorry, I adjusted my answer before your anwsers to a fully-qualified path because of the issue you described. Feel free to open PR.
My workaround is the following snippet added to `Custom HTML Head Content` in `Settings > Customization`: ```html /* remove empty p on macro use */ p:empty { display: none }...
Thats right: first things first! 1. Adjusted first mock block looks now like that: ```rust mock! { pub Envelope Result { /* */ } } impl Envelope { fn send(&'_...
According to this [line](https://github.com/asomers/mockall/blob/master/mockall_derive/src/lib.rs#L1022 ) the syn crate is used to parse anything given to `mock!`. The result is returned into this [struct](https://github.com/asomers/mockall/blob/master/mockall_derive/src/mockable_struct.rs#L328) which impls some traits from the syn...
I take option 4 and that compiles without errors. Awesome! Thank you!
I changed dev dependency to: ``` mockall = { git = "https://github.com/asomers/mockall.git", branch = "specific_impl" } ``` This is now the output of `RUSTFLAGS="-Z macro-backtrace" cargo +nightly test`:
Thanks for try to solve my problems ;-) My application works with the current latest version. But when changing the code back to my _old_ problem: ```rust use futures::Future; use...
Maybe something like a macro, e.g., `mock_context` or `mock_impl`.
I had the same problem and I think `python manage.py collectstatic` (mentioned [here](https://community.taiga.io/t/taiga-admin-page-does-not-load-correctly/504/2)) in the Taiga-back container helped me 🤔