Commit faf05ac
committed
Auto merge of #9057 - roblabla:patch-2, r=ehuss
Unstable section of cargo/config.toml takes bools
At least according to a quick local test, those should not be strings, but booleans! With the following cargo config:
```toml
[unstable]
mtime-on-use = 'yes'
```
I get the following cargo output:
```
error: error in /root/builds/hlab/isengard/agent-rust/.cargo_cache/config: `unstable.mtime-on-use` expected true/false, but found a string
```1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
0 commit comments