rusttimes.com Open in urlscan Pro
2001:4860:4802:32::15  Public Scan

URL: https://rusttimes.com/
Submission Tags: phishingrod
Submission: On November 14 via api from DE — Scanned from DE

Form analysis 1 forms found in the DOM

<form>
  <div class="form-group">
    <!-- <label for="sel1">Select issue Number#:</label> -->
    <select class="form-control" id="dynamic_select">
      <option value="#">Select Issue Number</option>
      <option value="index.html">Issue#69</option>
      <option value="issue_68.html">Issue#68</option>
      <option value="issue_67.html">Issue#67</option>
      <option value="issue_66.html">Issue#66</option>
      <option value="issue_65.html">Issue#65</option>
      <option value="issue_64.html">Issue#64</option>
      <option value="issue_63.html">Issue#63</option>
      <option value="issue_62.html">Issue#62</option>
      <option value="issue_61.html">Issue#61</option>
      <option value="issue_60.html">Issue#60</option>
      <option value="issue_59.html">Issue#59</option>
      <option value="issue_58.html">Issue#58</option>
      <option value="issue_57.html">Issue#57</option>
      <option value="issue_56.html">Issue#56</option>
      <option value="issue_55.html">Issue#55</option>
      <option value="issue_54.html">Issue#54</option>
      <option value="issue_53.html">Issue#53</option>
      <option value="issue_52.html">Issue#52</option>
      <option value="issue_51.html">Issue#51</option>
      <option value="issue_50.html">Issue#50</option>
      <option value="issue_49.html">Issue#49</option>
      <option value="issue_48.html">Issue#48</option>
      <option value="issue_47.html">Issue#47</option>
      <option value="issue_46.html">Issue#46</option>
      <option value="issue_45.html">Issue#45</option>
      <option value="issue_44.html">Issue#44</option>
      <option value="issue_43.html">Issue#43</option>
      <option value="issue_42.html">Issue#42</option>
      <option value="issue_41.html">Issue#41</option>
      <option value="issue_40.html">Issue#40</option>
      <option value="issue_39.html">Issue#39</option>
      <option value="issue_38.html">Issue#38</option>
      <option value="issue_37.html">Issue#37</option>
      <option value="issue_36.html">Issue#36</option>
      <option value="issue_35.html">Issue#35</option>
      <option value="issue_34.html">Issue#34</option>
      <option value="issue_33.html">Issue#33</option>
      <option value="issue_32.html">Issue#32</option>
      <option value="issue_31.html">Issue#31</option>
      <option value="issue_30.html">Issue#30</option>
      <option value="issue_29.html">Issue#29</option>
      <option value="issue_28.html">Issue#28</option>
      <option value="issue_27.html">Issue#27</option>
      <option value="issue_26.html">Issue#26</option>
      <option value="issue_25.html">Issue#25</option>
      <option value="issue_24.html">Issue#24</option>
      <option value="issue_23.html">Issue#23</option>
      <option value="issue_22.html">Issue#22</option>
      <option value="issue_21.html">Issue#21</option>
      <option value="issue_20.html">Issue#20</option>
      <option value="issue_19.html">Issue#19</option>
      <option value="issue_18.html">Issue#18</option>
      <option value="issue_7.html">Issue#17</option>
      <option value="issue_16.html">Issue#16</option>
      <option value="issue_15.html">Issue#15</option>
      <option value="issue_14.html">Issue#14</option>
      <option value="issue_13.html">Issue#13</option>
      <option value="issue_12.html">Issue#12</option>
      <option value="issue_11.html">Issue#11</option>
      <option value="issue_10.html">Issue#10</option>
      <option value="issue_9.html">Issue#9</option>
      <option value="issue_8.html">Issue#8</option>
      <option value="issue_7.html">Issue#7</option>
      <option value="issue_6.html">Issue#6</option>
      <option value="issue_5.html">Issue#5</option>
      <option value="issue_4.html">Issue#4</option>
      <option value="issue_3.html">Issue#3</option>
      <option value="issue_2.html">Issue#2</option>
      <option value="issue_1.html">Issue#1</option>
    </select>
  </div>
</form>

Text Content

 * Articles
 * Events
 * Jobs
 * Releases
 * Templates/XLR8RS

Subscribe Rust Times


YOUR BI-WEEKLY OVERVIEW OF THE MOST POPULAR
RUST ARTICLES, JOBS, EVENTS, AND NEWS


24 DECEMBER 2021, ISSUE #69

ARTICLES

UPDATES IN RUST 2021 EDITION

The new edition of Rust is here. The edition 2021 of Rust have many interesting
changes in it. Let us have a look at some of the changes in edition 2021.

Aman Verma
21 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

CONTEXTS AND CAPABILITIES IN RUST

Very often in programming we find ourselves needing access to some context
object in many places in our code.

Tyler Mandry
21 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

GCC RUST IN 2021

GCC Rust is a project dating back to 2014, when Rust was still in flux. It
became tough to keep up with everything, so the project stalled out.

PHILIP HERRONS
20 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

CROSS-COMPILING RUST LAMBDAS ON MACOS WITHOUT DOCKER

The standard way of developing Lambda functions in Rust is to use a custom
Lambda runtime provided by AWS and cross-compile everything – one binary per
function – before deployment.

Mathias Lafeldt
20 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

GETTING STARTED WITH THE WRITING OF OPERATING SYSTEM || RUST

Hi everyone, in today’s blog we are going to work on the bare metal environment
in Rust. We will see that how we work with the no_std and no_main Rust
environments. Working with no_main and no_std is a different way of programming.

Nitin Saxena
20 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

THREAD SAFETY IN C++ AND RUST

When studying Rust’s threading model, I came to see some correspondence between
C++ and Rust terminology that I had not seen published previously. Here are my
findings, which hopefully can help people with C++ background understand Rust
(or vice-versa).

Josh Haberman
18 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

A BEGINNER'S GUIDE TO PARSING IN RUST

Parsers are crucial for many data processing tasks. Contrary to what appearances
might imply, writing a parser from scratch is not difficult given the right
starting point.

Richard L. Apodaca
17 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

ANNOUNCING TOKIO CONSOLE 0.1

Today, we, the Tokio team, are announcing the initial release of Tokio Console
(Github), enabling Rust developers to gain deeper insight into the runtime
behavior of their applications.

Eliza Weisman
17 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

UNBUFFERED I/O CAN MAKE YOUR RUST PROGRAMS MUCH SLOWER

In this post, we will look at a common source of bad performance on Rust code
that can trip up even veteran developers, and what you can do when this happens
in your programs.

Vincent Foley
16 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

RUST IN PRODUCTION: ASTROPAD

In this interview, I talk with Jeremy Knope, Staff Software Engineer at
Astropad, a company that develops products for creative people.

Ellina Poponnikova
15 December 2021
Continue Reading

SHARE ARTICLE

 * 
 * 
 * 

EVENTS

LAST TUESDAY

What's gonna happen is you're all going to tell me what mind-blowing things
you've been doing. /nod.

29 December 2021
Online Event
Read More

SHARE EVENT DETAILS

 * 
 * 
 * 

INDY.RS - WITH SOCIAL DISTANCING

Indy.rs will be online only for this month. We are still planning on doing the
normal talks.

6 January 2022
Online Event
Read More

SHARE EVENT DETAILS

 * 
 * 
 * 

RUST NÜRNBERG ONLINE #8

What's new in the Rust world? What ideas and projects have you been working on?
Meet new people and discuss :).

6 January 2022
Online Event
Read More

SHARE EVENT DETAILS

 * 
 * 
 * 

JOBS

SOFTWARE ENGINEERING MANAGER

astropad
Remote
Know More

SHARE EVENT DETAILS

 * 
 * 
 * 

SENIOR RUST/C/C++ ENGINEER - DATABASE TOOLKIT

Timescale
Remote
Know More

SHARE EVENT DETAILS

 * 
 * 
 * 

RUST DEVELOPER

Tangram
Remote
Know More

SHARE EVENT DETAILS

 * 
 * 
 * 

BACKEND ENGINEER - RUST - CORE BACKEND

Kraken
Remote
Know More

SHARE EVENT DETAILS

 * 
 * 
 * 

RELEASES

ANNOUNCING TENNIS

The numeric value corresponds to the number of points won.

Read More

SHARE THIS OPPORTUNITY

 * 
 * 
 * 

ANNOUNCING QUANTITIES

The value of a quantity is generally expressed as the product of a number and a
unit.

Read More

SHARE THIS OPPORTUNITY

 * 
 * 
 * 

ANNOUNCING BENGBENGE

Simple inifity array for round-robin dns, beng, beng in rustlang. Origin is from
node.

Read More

SHARE THIS OPPORTUNITY

 * 
 * 
 * 

ANNOUNCING DYNAMIC-MATRIX

A crate to work with dynamically sized matrices.

Read More

SHARE THIS OPPORTUNITY

 * 
 * 
 * 

ANNOUNCING FASTGRAPH

A graph API offering a powerful graph trait that allows for the construction of
many types of graphs for different use-cases. Implements powerful parallel
traversal algorithms offering speedups when traversing the graph.

Read More

SHARE THIS OPPORTUNITY

 * 
 * 
 * 

TEMPLATES/XLR8RS

POE-SUBSTRATE-CENTRALIZED-APPLICATION

Ayushi Dwivedi
Read More

SHARE ARTICLE

 * 
 * 
 * 

SUBSTRATE RPC TO CALL RUNTIME API

Aman Verma
Read More

SHARE ARTICLE

 * 
 * 
 * 

EXPOSE STM32F3 SANSOR'S READING

Pawan Bisht
Read More

SHARE ARTICLE

 * 
 * 
 * 

STM32F3-ACCELEROMETER

Nitin Saxena
Read More

SHARE ARTICLE

 * 
 * 
 * 

1005+


SUBSCRIBERS

Subscribe Now
Organizing an event or Meet-up? Promote it with Rust times.


ARCHIVE

Select Issue
NumberIssue#69Issue#68Issue#67Issue#66Issue#65Issue#64Issue#63Issue#62Issue#61Issue#60Issue#59Issue#58Issue#57Issue#56Issue#55Issue#54Issue#53Issue#52Issue#51Issue#50Issue#49Issue#48Issue#47Issue#46Issue#45Issue#44Issue#43Issue#42Issue#41Issue#40Issue#39Issue#38Issue#37Issue#36Issue#35Issue#34Issue#33Issue#32Issue#31Issue#30Issue#29Issue#28Issue#27Issue#26Issue#25Issue#24Issue#23Issue#22Issue#21Issue#20Issue#19Issue#18Issue#17Issue#16Issue#15Issue#14Issue#13Issue#12Issue#11Issue#10Issue#9Issue#8Issue#7Issue#6Issue#5Issue#4Issue#3Issue#2Issue#1


WANTED TO CONTRIBUTE OR SHARE SUGGESTIONS?

We love to share relevant articles, events, and jobs with our subscribers.
Please contribute by submitting a PR. Also, let us know how we can improve
further with your feedback and suggestions.

Submit


FEATURED BOOKS

Buy Now
Buy Now


STAY CONNECTED & UPDATED!

 * 
 * 

Compiled by