portable_ada
By joakim-strandberg
tokio
A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ... (by tokio-rs)
portable_ada | tokio | |
---|---|---|
1 | 219 | |
6 | 28,561 | |
- | 1.1% | |
0.0 | 9.5 | |
almost 5 years ago | 9 days ago | |
Ada | Rust | |
- | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
portable_ada
Posts with mentions or reviews of portable_ada.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-09-14.
-
New Ada Folks (<2 years), what made you pick up (or leave) Ada?
For getting UTF-8 support one can also use Dmitry Kazakovs Simple components (http://www.dmitry-kazakov.de/ada/components). Based on it have made a UTF-8 version which is Ada/Spark based (https://github.com/joakim-strandberg/aida_2012). Another one I have been toying with is cross-compiler: https://github.com/joakim-strandberg/portable_ada . To print to standard out using UTF-8 the easiest way is probably enabling "-gnatW8" in order for normal String types be interpreted as UTF-8 strings. Using the UTF-8 support in the links I would recommend making one's own Ada bindings to the OS. It should be easy to do on Mac OS X and Linux where UTF-8 is enabled by default but more of an issue on Windows where the UTF-8 encoded strings need to be converted to UTF-16 before being handed over to the OS.
tokio
Posts with mentions or reviews of tokio.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-03-04.
-
Building a simple Kubernetes Controller in Rust - Part 1
Because of the nature of Kubernetes and its operation being "network operations", kube-rs considers all the operations as "async" operations, and we need a way to manage it. The well-known and mostly used way of doing it is with the tokio framework. Adding tokio, with features of "macros" (to use macros like #[tokio::main]) and a runtime (rt-multi-thread) should be enough. Additionally, we need to return an error to this function, so we will be using anyhow crate, that allows us to return errors without worrying about the error type
- Why I'm Writing a Scheme Implementation in 2025 (The Answer Is Async Rust)
-
The Inevitability of the Borrow Checker
The situation in Rust seems to be pretty complicated. But I did find that panicking within a thread you spawn kills just that thread and not the whole program. And it seems that Tokio has the same behavior.
https://github.com/tokio-rs/tokio/issues/2002
And web frameworks like Tower provide standard ways of Helen’ handling panics and turning them into error responses.
https://docs.rs/tower-http/latest/tower_http/catch_panic/ind...
So I don’t think panics are necessarily meant to be program-killing in Rust, even if Result types are heavily recommended instead.
-
Zig; what I think after months of using it
There's compiler-level traits like `Iterator` and `Future` which enforce references. If wanting to do intrusive pointers into them, one risks creating overlapping references: https://github.com/tokio-rs/tokio/issues/3399
- Build It Yourself
-
Rusty Backends
Full Tokio compatibility
-
Rust Implementation Guide - from efficient learning to implementation
[20] Tokio - An asynchronous Rust runtime
-
SSH port forwarding from within Rust code
We will be using tokio async framework and russh crates. Add them to your project:
-
Step-by-Step Guide to Server-Side Render React with Rust
For this example, we will use axum, a web framework that works on top of tokio.
-
Using Polars in Rust for high-performance data analysis
We’ll use Axum with Tokio to build a web backend, Tracing for logging, and Serde for serialization and deserialization.
What are some alternatives?
When comparing portable_ada and tokio you can also consider the following projects:
aida_2012
futures-rs - Zero-cost asynchronous programming in Rust
grpc-rust - Rust implementation of gRPC
smol - A small and fast async runtime for Rust
rust-prometheus - Prometheus instrumentation library for Rust applications
async-std - Async version of the Rust standard library