serde

A generic framework for serializing and deserializing Rust data structures efficiently and safely.

Library
Cargo
v1.0.229
10,777stars
MIT OR Apache-2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
75/100Good
Development Activity60
Maintenance72
Community68
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
89/100Excellent
Architecture94
Code Quality92
Innovation90
Learning Curve78

Serde is the de facto standard serialization framework for Rust, splitting the problem into two halves: data structures that know how to serialize and deserialize themselves via the Serialize and Deserialize traits, and data formats that know how to turn structured data into bytes and back. The #[derive(Serialize, Deserialize)] macros generate trait implementations at compile time, so most projects never hand-write conversion code.

Because the trait layer is decoupled from any specific wire format, the same derived struct can be serialized to JSON, YAML, TOML, MessagePack, CBOR, Bincode, and dozens of other formats implemented by the surrounding Serde ecosystem, with zero-cost abstractions that let the compiler optimize away the indirection entirely.

What You Get

  • Serialize and Deserialize traits with a derive macro (#[derive(Serialize, Deserialize)]) for automatic, compile-time codegen on structs and enums
  • A data-model abstraction (29 self-describing types) that decouples your Rust types from any specific wire format
  • no_std and no_alloc support via feature flags, making it usable on embedded and constrained targets
  • Fine-grained field-level attributes (#[serde(rename = "...")], skip_serializing_if, default, flatten, with) for controlling exactly how fields map to the wire format
  • Compatibility with dozens of independently maintained format crates (serde_json, serde_yaml, bincode, rmp-serde, toml, and more) that all plug into the same trait layer

Common Use Cases

  • Parsing and emitting JSON payloads for HTTP APIs and web services
  • Loading and validating application configuration from TOML or YAML files
  • Encoding compact binary wire formats for RPC and network protocols
  • Persisting application state or cache entries to disk in a structured format
  • Converting between in-memory Rust types and external schemas (e.g. AWS Parameter Store, environment variables) via community format crates

Under The Hood

Architecture The workspace splits the public serde crate from serde_core, which holds the actual trait definitions and blanket implementations (~12,000 lines across ser/mod.rs, de/mod.rs, de/impls.rs, de/value.rs) so that serde_derive’s generated code and third-party format crates can depend on a stable core without pulling in the thin re-export layer. At runtime, a value’s Serialize::serialize call takes a format-supplied Serializer and drives it through calls like serialize_struct/serialize_map; deserialization mirrors this with a Deserializer handing data to a Visitor that builds the target type. serde_core/src/private/content.rs implements an intermediate buffered Content representation that powers advanced features such as #[serde(untagged)] enums and #[serde(flatten)], which need to peek at data before committing to a concrete deserialization path.

Tech Stack Pure Rust, edition 2021, with an MSRV of 1.56 for serde and 1.71 for serde_derive. The proc-macro derive layer depends on proc-macro2, quote, and syn 2.x (pinned at the workspace level), while the core trait crate has zero required dependencies, keeping it embeddable via no_std/no_alloc feature flags. The five-crate Cargo workspace (serde, serde_core, serde_derive, serde_derive_internals, test_suite) is built and tested through a single GitHub Actions workflow (.github/workflows/ci.yml).

Code Quality The test_suite crate contains 150 test files covering derive macro output, UI/compile-fail cases, byte handling, unstable features, and regression fixes, plus a dedicated no_std sub-crate that verifies the no-std build path compiles independently. Documentation density is unusually high for a systems library — serde_core’s ser/mod.rs and de/mod.rs alone contain over 2,700 lines of doc comments. Error handling is idiomatic throughout: Result<T, Self::Error> with an associated error type is threaded through every trait method rather than panicking, and naming stays consistent with Rust API guidelines (Serialize/Deserialize, Serializer/Deserializer, Visitor).

API Design The common case requires only serde = { version = "1", features = ["derive"] } plus a format crate and a #[derive(Serialize, Deserialize)] attribute — no boilerplate beyond that. The ~5% of cases needing custom behavior are handled through named, documented attributes (rename, default, skip_serializing_if, flatten, with) rather than requiring hand-written trait impls, and the consistent trait vocabulary is reused verbatim by every downstream format crate (serde_json, serde_yaml, bincode, etc.), so learning it once transfers across the entire ecosystem.

Used by 96 apps in this directory

Rust
100%
MIT

abtop

Developer Tools · Monitoring

3,456

Like htop, but for your AI coding agents — monitor Claude Code, Codex CLI, and OpenCode sessions, tokens, context windows, rate limits, and orphan ports all from one terminal screen.

View details
77
Repo Health
79
Technical
80
Dependency
Built with
Rust100%
Updated 3 weeks ago
Rust
64%
Apache 2.0

agentgateway

AI Development · Developer Tools

4,420

An open source AI-native proxy that secures, observes, and governs agent-to-LLM, agent-to-tool, and agent-to-agent communication through MCP, A2A, and unified LLM routing.

View details
88
Repo Health
82
Technical
72
Dependency
Built with
Rust64%
Go24%
Updated yesterday
Dart
74%
AGPL 3.0

AppFlowy

Productivity · Project Management · Collaboration

75,729

The open-source AI workspace that puts your data, your rules — with local LLMs, CRDT collaboration, and full self-hosting built in.

View details
66
Repo Health
81
Technical
66
Dependency
Built with
Dart74%
Rust24%
Updated 1 weeks ago
C#
83%
Other

Bitwarden Server

Password Manager · Security

19,899

Self-hosted, open-source password management backend with zero-knowledge encryption and enterprise-grade identity services

View details
93
Repo Health
82
Technical
82
Dependency
Built with
C#83%
TSQL10%
Updated today
TypeScript
92%
GPL 3.0

Blinko

Knowledge Management · Note Taking

10,880

A self-hosted, AI-powered card note-taking tool that lets you capture fleeting thoughts instantly and retrieve them with natural language search.

View details
83
Repo Health
69
Technical
65
Dependency
Built with
TypeScript92%
Updated 2 weeks ago
TypeScript
75%
GPL 3.0

Bramble

Password Manager · Security · Authentication

315

Local-first, end-to-end encrypted password manager that syncs your vault directly between your own devices over a private peer-to-peer mesh — no server, no account, no cloud in the middle.

View details
73
Repo Health
84
Technical
72
Dependency
Built with
TypeScript75%
Updated today
TypeScript
49%
AGPL 3.0

BrowserOS

Browser · AI Assistants

13,248

The open-source agentic Chromium browser with native AI agents, MCP server, and visual workflow automation — your data never leaves your machine.

View details
87
Repo Health
82
Technical
69
Dependency
Built with
TypeScript49%
Rust22%
Python16%
Updated today
Rust
54%
Other

Cameleer

AI Agents

23

A local-first desktop workspace for managing AI agents in an enterprise-style workflow — agent directory, Kanban task tracking, workspace chat, and a full runtime/audit log of agent actions and tool approvals.

View details
48
Repo Health
65
Technical
76
Dependency
Built with
Rust54%
JavaScript24%
TypeScript15%
Updated 4 weeks ago
TypeScript
55%
Other

Cap

Team Chat · Video Conferencing

20,986

Open source Loom alternative with GPU-accelerated recording, instant share links, AI summaries, and full self-hosting via Docker Compose.

View details
89
Repo Health
81
Technical
65
Dependency
Built with
TypeScript55%
Rust40%
Updated yesterday

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search