Colin Yates

Results 47 comments of Colin Yates

Thanks @passcod. For my situation `cargo watch -w src -x run` is actually the simplest as the other folders are siblings of `src`. Thanks :-)

(note: a `cargo clean` allowed compilation to succeed. I compile this multiple times a day and never run into this particular compilation problem, hence reporting)

Hi @freeplant - as a native English speaker I have to disagree :-) - "Please try and resync the library" or "Please try to resync the library" are the correct...

(non unity user here) I cannot believe this has been overlooked. I really like the nice simple UI but why oh why isn't there a search box :). Please don't...

I've not managed to get anywhere unfortunately. `tracing` seems *hugely* powerful...but very unwieldy. I expect a lot of people are running it with another service to consume the actual traces.

(at the moment I'm simply creating a new Tokio runtime inside the `run` fn: ```rust #[cfg(any(feature = "tests", test))] pub fn new_tokio(future: F) { tokio::runtime::Builder::new_multi_thread() .enable_all() .build() .unwrap() .block_on(future); }...

hi @lambda-fairy - so the idea is that the app is primarily HTML served from the back, which is of course why I'm using this excellent tool :-), but I...

Thanks @rben01 - you make a compelling point. I'm nervous about getting too Java-esque with classes everywhere, but I can't fully articulate why yet. I need to let this simmer...

+1 from me - I can get this from ALE (which I use alongside this), so it isn't a deal breaker, but it seems an obvious "win" for the "one...