Earlier quoted context omitted.
Stable rust is perfectly fine. The vast majority of Rust users are on stable only.
Unless you want to try out Rocket. That one STILL requires nightly...
Rust 1.49.0
101–110 of 117 posts
Re: Rust 1.49.0
#102Re: Rust 1.49.0
#103I really enjoy using Rust for personal side projects. It made me a better C++ developer. I'm excited about stabilized const generics to be able to speed up my linear algebra code. This issue though prevents me from recommending Rust for closed source development to my colleagues: https://github.com/rust-lang/rust/issues/40552
Re: Rust 1.49.0
#104Earlier quoted context omitted.
Maybe read a bit on Deref: https://doc.rust-lang.org/std/ops/trait.Deref.html Any time you have a &String reference, it triggers coercion to &str.
Unfortunately that is not always the case. This fails to compile, for example (and is fairly irritating): let my_str = "Hello".to_owned(); match &my_str { "Hello" => (), _ => () }
Re: Rust 1.49.0
#105Re: Rust 1.49.0
#106What IDE do people use for rust nowadays?
Re: Rust 1.49.0
#107What IDE do people use for rust nowadays?
Re: Rust 1.49.0
#108What IDE do people use for rust nowadays?
Re: Rust 1.49.0
#109I really enjoy using Rust for personal side projects. It made me a better C++ developer. I'm excited about stabilized const generics to be able to speed up my linear algebra code. This issue though prevents me from recommending Rust for closed source development to my colleagues: https://github.com/rust-lang/rust/issues/40552
It is helpful to leave comments on issues like this, by the way.
Re: Rust 1.49.0
#110Any chance to see increased support for 8bit AVR in upcoming releases? I know Rust is community driven, so it's not like contributions will appear from thin air. But I guess maybe it would be time to promote/incentivize people to contribute support for microcontrollers. This is a realm where C reigns and Rust would be a bowl of fresh air.
32 bit microcontrollers are well-supported, and often cheaper, more power efficient and with more features than old 8-bit uCs. https://github.com/rust-embedded/wg