-
Hey I was wondering if anybody had any problems lately with https://www.rust-lang.org/ site and https://rustup.rs/ . On my machine there seems to be a problem and these sites just won't load. I wanted to install newer version of rust on my debian system and all tutorials online point to these sites. I am recently started my journey with linux and I am really fonfused with this one. Please help
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
I have a dummy question : I created a CLI command in Rust and published it on crates.io but once installed with `cargo install cargo-inkanim` I cannot run it inside the terminal by simply calling `inkanim ...` I still need to call it like `cargo-inkanim ...` : which setting did I forgot ? Thanks
-
Make sure to regularly check out This Week in Rust, a (the) great Rust news/article/video aggregate that also has a Call for Participation section every week with open source projects looking for contributors.
-
This was one of the objectives when we created https://github.com/launchbadge/realworld-axum-sqlx
-
tokio-tungstenite
Future-based Tungstenite for Tokio. Lightweight stream-based WebSocket implementation
There are example files in the tokio-tungstenite crate called `autobahn-client.rs` and `autobahn-server.rs`. Why are they called autobahn? I googled and can't understand what autobahn is all about. Is it a websocket pattern? Or some protocol?
-
(note that genawaiter itself doesn't support no_std environments, but there's a merge request for that.)
-
see also: https://github.com/hashb/its_rusty/tree/master/barcode_gen
-
In particular I'm looking for a compile time checked HTML template engine. I'd love it to have syntax that is terser than HTML and maybe even has partials with typed parameters. Performance is not a massive priority, I'd prefer something safe, secure and easy to use over something extremely fast. Also i think having Context-aware escaping is sort of a must because i assume otherwise it's a security risk? (for example maud does not have it yet https://github.com/lambda-fairy/maud/issues/181) Overall i'd like to have something that feels very "Rust", as in secure and type safe and "if it compiles it runs".
-
The ones I am aware of are gc and broom. None will be as simple to use as the one in old Rust as userland implementations don't have the benefit of first-class integrated compiler support.
-
broom
An ergonomic tracing garbage collector that supports mark 'n sweep garbage collection (by zesterer)
The ones I am aware of are gc and broom. None will be as simple to use as the one in old Rust as userland implementations don't have the benefit of first-class integrated compiler support.
-
With static assertions, i found RFC 2790 where you can check out the status of this.
-
For testing such code on nightly there's -Z randomize-layout flag which will deliberately change the layout of repr(Rust) types so you can notice if you were relying on something it does not guarantee.