Earlier this month, iqlusion, an infrastructure provider for next-generation cryptocurrency technologies, announced the release of Abscissa 0.1, a security-oriented microframework for building Rust applications. Yesterday, the team announced the release of Abscissa 0.2.
Tony Arcieri, the co-founder of iqlusion, wrote in a blog post, “After releasing v0.1, we’ve spent the past few weeks further polishing it up in tandem with this blog post, and just released a follow-up v0.2.”
After developing a lot of Rust applications ranging from CLI to network services and managing a lot of the same copy/paste boilerplate, iqlusion decided to create the Abscissa framework. It aims to maximize functionality while minimizing the number of dependencies.
Abscissa comes with simple declarative option parser, which is based on the gumdrop crate. The option parser encompasses several improvements to provide better UX and tighter integration with the other parts of the framework, for example, overriding configuration settings using command-line options.
It uses a component architecture for extensibility, with a minimalist implementation and still is able to offer features like calculating dependency ordering and providing hooks into the application lifecycle.
Allows simple parsing of Tom's Obvious, Minimal Language (TOML) configurations to serde-parsed configuration types that can be dynamically updated at runtime.
Abscissa has a generic ‘Error’ type based on the ‘failure’ crate and a unified error-handling subsystem.
It uses the ‘log’ crate to provide application-level logging.
The optional ‘secrets’ module contains a ‘Secret’ type that derives serde’s Deserialize, which can be used for representing secret values parsed from configuration files or elsewhere.
It supports colored terminal output and is useful for Cargo-like status messages with easy-to-use macros.
Read the official announcement for more details on Abscissa. You can also check out its GitHub repository.
Introducing Ballista, a distributed compute platform based on Kubernetes and Rust
Fastly CTO Tyler McMullen on Lucet and the future of WebAssembly and Rust [Interview]
Rust 1.36.0 releases with a stabilized ‘Future’ trait, NLL for Rust 2015, and more