Sven Kanoldt
Sven Kanoldt
Adding the ssh key to ssh-agent should in general work ```shell eval $(ssh-agent) ssh-add cargo ... ``` or on mac ```shell eval $(ssh-agent) ssh-add --apple-use-keychain cargo ... ```
Just came back to this issue and had an idea on how we can generically yet safely support this. Let's start with this given config file ```toml # some-stuff.toml title...
An alternative but less safe approach would be something like a template filter to first load the config file and second extract and output the variables content like so: ```...
Thanks for reporting. How do you execute the program? Via snap or anything? What is your current working directory? What permissions does your current working directory have?
Can you pls try it on a native FS? Like on linux an ext4 or something?
I suspect the problem on the mounted fs. What does `mount` say? What are your users permissions? Also snaps create a own layer of permissions on top of your current...
gathering some details from the SemVer specs in order to understand the nature of pre-releases a bit better. ### Pre-Release Definition The grammer below [[1]](https://semver.org/#backusnaur-form-grammar-for-valid-semver-versions) elaborates the rules for the...
@MarcoIeni I tested the branch on my codebase locally and it works as expected, very nice work!
Thank you so much!
it turns out that versions of anyhow < 1.0.39 don't have that problem, because there the return type is `&Backtrace`. Newer versions wrap this with `Option`.