Re: [RFC v3 0/3] add kconfirm
From: Julian Braha
Date: Sat May 16 2026 - 18:36:59 EST
On 5/16/26 22:53, Julian Braha wrote:
> Dependencies will need to first be downloaded from crates.io by running
> the `cargo vendor` command in scripts/kconfirm/
Ugh, sorry all. I didn't realize that the linux gitignore blocks all dot
files.
So, the scripts/kconfirm/.cargo/config.toml wasn't checked in correctly
due to this.
It should have contained the following:
```
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"
```
And Nicolas, I think this was why v2 didn't compile for you.
- Julian Braha