All public logs

From Cricalix.Net

Combined display of all available logs of Cricalix.Net. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:02, 25 September 2023 Cricalix talk contribs created page Computing/Rust (Created page with "Things I forget when doing new Rust installs, or other things I want to keep track of with Rust. # Install rust-analyzer via rustup. <code>rustup component add rust-analyzer</code> ==== Reqwest GET URIs ==== <syntaxhighlight lang="rust"> let mut req = client.get("https://www.google.com").build().unwrap(); let query: String = form_urlencoded::Serializer::new(String::new())    .append_key_only("foo")    .finish(); req.url_mut().set_query(Some(&query)); </syntaxhighl...") Tag: Visual edit