Thomas B

Results 275 comments of Thomas B
trafficstars

Same issue on up-to-date Arch s. I'm not sure what ``` Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support. at System.Environment.FailFast(System.String)at System.Globalization.GlobalizationMode.GetGlobalizationInvariantMode()...

Ok looks like launching vscode with: ``` DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 code ``` is a workaround

I've been experimenting with this and it seems to not behave properly when the considered `Vec` should be empty. The following test (built similarly to your new `vec_container` test) does...

> I removed ignore from 'test_doctype_fail' test. Locking `xml-rs` and `thiserror` deps to specific versions fixed the problem I don't beleive pinning these crates to old versions is the right...

I mean semver minor update. That is, xml-rs moving from version 8.0 to 8.y , y>0 Cloning serde-xml-rs and pinning version to 8.0 and this test passes. If I allow...

@sporto > Maybe Heroku does this better as they have `CACHE_DIR`. I will like to hear how long it takes for you. > > Because how long the Rust compiler...

#2792 may be another solution to the first part (though I'm not sure how it would behave with the warnings), but it doesn't do anything for the "other benefits".

What's the original command and how should I set it so that it checks in the root of my project ? (I wouldn't want to remove any other important parameters)

I tried setting: ```json { "rust-analyzer.checkOnSave.overrideCommand": [ "cargo", "check", "--message-format=json" ] } ``` and it seems to still check the whole workspace. :(