tcpproxy VS rustpad

Compare tcpproxy vs rustpad and see what are their differences.

tcpproxy

A cross-platform TCP proxy in tokio and rust (by mqudsi)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
tcpproxy rustpad
3 23
111 3,082
- -
5.3 0.0
3 months ago 6 months ago
Rust Rust
MIT License 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.

tcpproxy

Posts with mentions or reviews of tcpproxy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-18.
  • Learning Async Rust with Too Many Web Servers
    4 projects | news.ycombinator.com | 18 Aug 2023
    Thanks. Perhaps I did go overboard with that disclaimer.. probably because I myself made the mistake of initially using [0] the oh-so-convenient tokio::io::copy() instead of writing my own copy method that would drop the other half of the connection when one side was closed.

    The copy_with_abort() routine is still taking the easy way out in this not-optimized-for-heavy-production-use sample because it uses a broadcast channel per connection to reactively signal that the other half of the connection should be closed (rather than timing out every x ms to see if an abort flag has been set). In the real world, I'd probably replace the join! macro with a manual event loop to be able to do the same but without creating a broadcast channel per-connection.

    (I maintain an extremely lightweight "awaitable bools" library for rust [1] that is perfect for this kind of thing (roughly equivalent to a "bounded broadcast_channel<()> of queue length 1, but each "channel" is only a single (optionally stack-allocated) byte) — but it's for event loops in synchronous code and not async executor compatible.)

    [0]: https://github.com/mqudsi/tcpproxy/commit/0164ef836a49f2f738...

    [1]: https://github.com/neosmart/rsevents

  • Example of tcp proxy using tokio?
    1 project | /r/rust | 16 Oct 2022

rustpad

Posts with mentions or reviews of rustpad. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-15.

What are some alternatives?

When comparing tcpproxy and rustpad you can also consider the following projects:

rsevents - Auto- and manual-reset events for rust

iced - A cross-platform GUI library for Rust, inspired by Elm

glommio - Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans.

mkdocs-material - Documentation that simply works

sea-orm - 🐚 An async & dynamic ORM for Rust

async-tungstenite - Async binding for Tungstenite, the Lightweight stream-based WebSocket implementation

tarpc - An RPC framework for Rust with a focus on ease of use.

nativeshell - Experimental embedder for Flutter

automerge - A JSON-like data structure (a CRDT) that can be modified concurrently by different users, and merged again automatically.

docs-deploy - Deploys a VuePress docs repo to GitHub Pages

warp - A super-easy, composable, web server framework for warp speeds.

web-view - Rust bindings for webview, a tiny cross-platform library to render web-based GUIs for desktop applications