The developers behind the programming language Rust have announced the release of Rust 1.70.0. One of the changes in this release is that the “sparse” protocol for reading the crates.io index is now enabled by default. The team says that using this protocol to get information from the index will allow for significant performance improvements. … continue reading
Snapchange is a Rust framework that can be used to fuzz a target binary with minimal modifications, offering useful insight into the process. It works by replaying physical memory snapshots in order to make the fuzzing of various targets more efficient and less complex. As it is agnostic to the target operating system, the snapshot … continue reading
The latest version of the Rust programming language, Rust 1.66, is now available. In Rust 1.66, enums that have fields can now use explicit discriminants. This can be used to pass values across language boundaries that require the enum representation to match in both languages. Previously explicit discriminants could only be used if none of … continue reading
The release candidate for the latest version of the Linux kernel was announced last month, and one of the highlights in the release notes for Linux 6.1 is the inclusion of the initial infrastructure for adding Rust as a language. Rust has been growing steadily in popularity through the years, and though according to the … continue reading
The Rust Foundation, the nonprofit organization for the Rust programming language, today announced that it will be establishing a dedicated security team, underwritten by the OpenSSF’s Alpha-Omega Initiative as well as the foundation’s newest platinum member, JFrog. “There’s often a misperception that because Rust ensures memory safety that it’s one hundred percent secure, but Rust … continue reading
For the seventh year, Rust has been named the most loved language in Stack Overflow’s Developer Survey. Eighty-seven percent of Rust developers said that they want to continue using the language. Rust also tied with Python as the most wanted technology in this year’s report, with TypeScript and Go following closely behind. The distinction between … continue reading
The team at Google recently announced that Jetpack WindowManager 1.0.0 is now stable. WindowManager can be used to manage multi-window applications. Since its initial alpha release, the library has added WindowMetrics information and experimental support for activity embedding. Jetpack WindowManager brings users the DisplayFeature interface as well as its FoldingFeature implementation. These work to provide … continue reading
The Rust team has announced the release of Rust 1.58.1, which includes some important fixes for features introduced in Rust 1.58.0. It fixes a race condition in the library “std::fs::remove_dir_all,” otherwise known as the vulnerability CVE-2022-21658. According to the Rust team, an attacker could exploit the vulnerability to trick a privileged program into deleting files … continue reading
The Rust 2021 edition and Rust 1.56.0 stable are now available for download. Editions in Rust enable opt-in changes that have the potential to create backwards compatibility issues. According to the Rust team, this 2021 edition of the language is small, but includes some quality of life changes. New changes in the latest version include: … continue reading
Snyk announced that it closed a $530 million Series F investment, which now totals the company’s funding to-date to $8.5 billion. “This new investment, together with the rapid adoption of our platform and growing customer base, validates our developer security vision,” said Peter McKay, CEO of Snyk. “When security starts with the world’s expanding pool … continue reading
The latest version of the programming language Rust is now available. Rust 1.54 introduces a few new stable features. One new update is that attributes can invoke function-like macros. An example use case of is including documentation from other files into comments. “For example, if your project’s README represents a good documentation comment, you can … continue reading
Some of the major highlights of the TypeScript 4.4 beta are control flow analysis of aliased conditions, symbol and template string pattern index signatures and more. With control flow analysis of aliased conditions enabled, developers don’t have to convince TypeScript of a variable’s type whenever it is used because the type-checker leverages something called control … continue reading