bincode

A binary encoder / decoder implementation in Rust. (by servo)

Bincode Alternatives

Similar projects and alternatives to bincode

  1. rust

    2,802 bincode VS rust

    Empowering everyone to build reliable and efficient software.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. Next.js

    2,285 bincode VS Next.js

    The React Framework

  4. rfcs

    679 bincode VS rfcs

    RFCs for changes to Rust

  5. bevy

    594 bincode VS bevy

    A refreshingly simple data-driven game engine built in Rust

  6. Cargo

    274 bincode VS Cargo

    The Rust package manager

  7. MangoHud

    A Vulkan and OpenGL overlay for monitoring FPS, temperatures, CPU/GPU load and more. Discord: https://discordapp.com/invite/Gj5YmBb

  8. serde

    198 bincode VS serde

    Serialization framework for Rust

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. iced

    177 bincode VS iced

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

  11. PyO3

    158 bincode VS PyO3

    Rust bindings for the Python interpreter

  12. Rocket

    162 bincode VS Rocket

    A web framework for Rust.

  13. swc

    155 bincode VS swc

    Rust-based platform for the Web

  14. sqlx

    151 bincode VS sqlx

    🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite. (by launchbadge)

  15. purescript

    54 bincode VS purescript

    A strongly-typed language that compiles to JavaScript

  16. Idris2

    39 bincode VS Idris2

    A purely functional programming language with first class types

  17. lalrpop

    25 bincode VS lalrpop

    LR(1) parser generator for Rust

  18. rlua

    13 bincode VS rlua

    High level Lua bindings to Rust

  19. nue

    0 bincode VS nue

    I/O and binary data encoding for Rust (by arcnmx)

  20. rutie

    8 bincode VS rutie

    “The Tie Between Ruby and Rust.”

  21. msgpack-rust

    MessagePack implementation for Rust / msgpack.org[Rust]

  22. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better bincode alternative or higher similarity.

bincode discussion

Log in or Post with

bincode reviews and mentions

Posts with mentions or reviews of bincode. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-08-07.
  • Bincode 2.0.0
    1 project | news.ycombinator.com | 6 Mar 2025
  • Build "For you" recommendations using AI on Fastly!
    3 projects | dev.to | 7 Aug 2024
    Now we have 500 small datasets and an index that maps centroid points to the relevant dataset. Next, to enable real-time performance, we want to precompile search graphs so that we don't need to initialize and construct them at runtime, and can use as little CPU time as possible. A really fast nearest-neighbor algorithm is Hierarchical Navigable Small Worlds (HNSW), and it has a pure Rust implementation, which we're using to write our edge app. So we wrote a small standalone Rust app to construct the HNSW graph structs for each dataset, and then used bincode to export the memory of the instantiated struct into a binary blob.
  • Hey Rustaceans! Got a question? Ask here (14/2023)!
    4 projects | /r/rust | 3 Apr 2023
    Ermm... actually I meant something like this: playground, but then I realized it's basically (de)serialization, and I just found that we already have a crate for that: bincode.
  • Convert a base-64 encoded, serialised, Rust struct to a Python class
    3 projects | /r/rust | 6 Mar 2023
    One, figure out the bincode format (documented here: https://github.com/bincode-org/bincode/blob/trunk/docs/spec.md) and write your own parser. Maybe a one-off that specifically only handles this one data structure would be fairly straightforward.
  • Fang, async background processing for Rust
    1 project | /r/rust | 6 Aug 2022
  • impl serde::Deserialize... is it really that complicated?
    2 projects | /r/rust | 28 Apr 2022
    Step 1: The Deserialize type requests data from the Deserializer with one of the deserialize_type methods. This gives it an opportunity to provide certain metadata about the type: structs provide a list of fields, enums provide a list of variants, tuples provide a length, etc. Some data formats (notably bincode) require this metadata to drive deserializing, as the wire format is not self-describing. Crucially, the Deserialize type also provides a visitor that is capable of receiving the requested data from the Deserializer.
  • A nicer way to pack this message?
    2 projects | /r/rust | 1 Apr 2022
    Alternatively, give Bincode a try.
  • Hey Rustaceans! Got an easy question? Ask here (9/2022)!
    19 projects | /r/rust | 1 Mar 2022
    Like separate instructions? I was thinking if a instruction have unknown length I make sure I have some kind of header field that tells the data length of the instruction so receiver knows when next instruction starts. And I was planning on using Bincode with serde to serialize and dezerialize like structs and stuff.
  • Easily converts a struct into Vec<u8> and back.
    4 projects | /r/rust | 1 Dec 2021
    Isn't this essentially bincode?
  • Does rust have function works like eval?
    9 projects | /r/rust | 19 Aug 2021
    This is similar in practice to using abi_stable, and end-users will still receive compiled files, but your plugins will be sandboxed and a single build will work on all platforms. The downside is that it's a bit more work because WebAssembly's support for passing complex data types between the host and the WebAssembly code is in the preliminary stages, so you need to do something like using Serde to encode your data into something like Bincode or MessagePack (or JSON and friends) to hand it off between the host and the plugin.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 21 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic bincode repo stats
18
2,913
7.5
9 days ago

servo/bincode is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of bincode is Rust.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai