Austin Green

Results 17 comments of Austin Green

I have tried uninstalling the VS Rust extension, uninstalling Rust completely, reinstalling both. On opening the Rust source file, VS prompts for installing; it takes a few seconds, then sits...

OK, but nothing is happening in VS! Especially, no compilation of Rust. Very grateful for any ideas for debugging this one.

Yes, open folder, selecting the one with Cargo.toml in. My test project is basically a hello world, so added a variable, and yes, hovering over it displays the type and...

The compiler has done something (see screenshot) but not as far as the .exe. Could it have failed the link for some reason (VS or Rust config) ? The lack...

Cargo.toml: ```[package] name = "foo" version = "0.1.0" authors = ["austin"] edition = "2018" [dependencies] gtk = "0.6.0" sourceview = { version = "0.6.0", features = ["v3_14"], path = "../sourceview"...

I've now given up trying to get 0.6.0 to compile. The github code lacks the v3_14 feature, so you have to clone it and fix locally, but even then it...

Traced the error to portaudio, by trying to build it in `.cargo/registry/src/github.com-1ecc6299db9ec823/portaudio-0.6.4`, which resulted in the same linker errors. Turnes out there is a dependency on Ubuntu package `portaudio19-dev` which...