TatriX

Results 106 comments of TatriX

Now I'm trying to build exactly one target. In `Cargo.toml`: ``` [package.metadata.android] build_targets = [ "aarch64-linux-android" ] ``` then `cargo apk build` gives ``` Compiling android_native_app_glue.c /usr/local/android-ndk-r15b/sources/android/native_app_glue/android_native_app_glue.c:18:17: fatal error: jni.h:...

ok, I finally did it. `android_version = 21` did the trick

I ended up with the following: ```elisp (defvar my-restclient-token nil) (defun my-restclient-hook () "Update token from a request." (save-excursion (save-match-data ;; update regexp to extract required data (when (re-search-forward "\"token\":\"\\(.*?\\)\""...

@pashky I think this feature is what a lot of users want, do you think this solution is good enough to be mentioned on the readme?

You can do something like this: ```elisp :token := (with-temp-buffer (insert-file-contents "token") (buffer-string)) ```

You can use something like this: ```elisp :ignore := (setq my-dir-prefix "/path/do/dir") :DIR_PREFIX := my-dir-prefix :REQ_BODY := (concat my-dir-prefix "my.json") ```

`:ignore` is a randomly chosen name which is used to apply side effects. You can call it whatever you want.

My use case. I have a struct: ```rust #[derive(Deserialize, AsChangeset)] #[table_name = "users"] pub struct UpdateUserData { username: Option, email: Option, bio: Option, image: Option, #[skip_somehow_plz] password: Option, } ```...

As far as I know this depends on #1512 Original use case currently can be fulfilled with nested structs and query with join. Example from @weiznich: ```rust #[derive(Queryable)] struct Foo...

It has a good use case to be implemented on `Quaryable` too. Basically it's the same as with `Insertable`. I want to be able to reuse the same struct to...