Convert Figma logo to code with AI

serde-rs logojson

Strongly typed JSON library for Rust

4,815
552
4,815
184

Top Related Projects

Rust port of simdjson

19,071

Parsing gigabytes of JSON per second : used by Facebook/Meta Velox, the Node.js runtime, ClickHouse, WatermelonDB, Apache Doris, Milvus, StarRocks

9,335

Rust parser combinator framework

8,997

Serialization framework for Rust

Quick Overview

Serde JSON is a high-performance JSON library for Rust. It provides serialization and deserialization of Rust data structures to and from JSON, with a focus on speed and flexibility. Serde JSON is part of the larger Serde ecosystem, which offers a framework for serializing and deserializing Rust data structures efficiently and generically.

Pros

  • Extremely fast performance, often outperforming other JSON libraries
  • Seamless integration with Rust's type system and custom data structures
  • Highly customizable with support for various JSON standards and custom serialization rules
  • Zero-copy deserialization for improved efficiency

Cons

  • Steeper learning curve compared to simpler JSON libraries
  • Can produce complex compile errors due to its heavy use of Rust's type system
  • Requires additional derive macros for custom types, which may increase compile times
  • Documentation can be overwhelming for beginners due to the library's extensive features

Code Examples

  1. Basic serialization and deserialization:
use serde::{Serialize, Deserialize};
use serde_json::{json, Value};

#[derive(Serialize, Deserialize)]
struct Person {
    name: String,
    age: u32,
}

let person = Person {
    name: "Alice".to_string(),
    age: 30,
};

// Serialize to JSON
let json = serde_json::to_string(&person).unwrap();
println!("Serialized: {}", json);

// Deserialize from JSON
let deserialized: Person = serde_json::from_str(&json).unwrap();
println!("Deserialized: {:?}", deserialized);
  1. Working with untyped JSON:
use serde_json::json;

let json_value = json!({
    "name": "Bob",
    "age": 25,
    "hobbies": ["reading", "cycling"]
});

println!("Name: {}", json_value["name"]);
println!("First hobby: {}", json_value["hobbies"][0]);
  1. Custom serialization:
use serde::{Serialize, Serializer};

struct CustomType(i32);

impl Serialize for CustomType {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: Serializer,
    {
        serializer.serialize_str(&format!("Custom:{}", self.0))
    }
}

let custom = CustomType(42);
let json = serde_json::to_string(&custom).unwrap();
println!("Custom serialized: {}", json);

Getting Started

To use Serde JSON in your Rust project, add the following to your Cargo.toml:

[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

Then, in your Rust code:

use serde::{Serialize, Deserialize};
use serde_json::json;

#[derive(Serialize, Deserialize)]
struct MyStruct {
    field: String,
}

fn main() {
    let data = MyStruct { field: "Hello, Serde JSON!".to_string() };
    let serialized = serde_json::to_string(&data).unwrap();
    println!("Serialized: {}", serialized);
}

This setup allows you to start using Serde JSON for basic serialization and deserialization tasks.

Competitor Comparisons

Rust port of simdjson

Pros of simd-json

  • Significantly faster JSON parsing using SIMD instructions
  • Lower memory usage during parsing
  • Supports both serialization and deserialization

Cons of simd-json

  • Requires CPU support for specific SIMD instructions (AVX2 or SSE4.2)
  • Less mature and less widely adopted compared to serde_json
  • May have compatibility issues with some Rust versions or platforms

Code Comparison

simd-json:

use simd_json::ValueAccess;
let mut json = r#"{"a": 1, "b": 2}"#.to_string();
let value = simd_json::to_borrowed_value(&mut json)?;
let a = value["a"].as_f64().unwrap();

serde_json:

use serde_json::Value;
let json = r#"{"a": 1, "b": 2}"#;
let value: Value = serde_json::from_str(json)?;
let a = value["a"].as_f64().unwrap();

Both libraries provide similar functionality for parsing JSON, but simd-json offers performance benefits through SIMD optimizations. However, serde_json is more widely used and has broader platform support. The choice between them depends on specific project requirements, performance needs, and target platforms.

19,071

Parsing gigabytes of JSON per second : used by Facebook/Meta Velox, the Node.js runtime, ClickHouse, WatermelonDB, Apache Doris, Milvus, StarRocks

Pros of simdjson

  • Extremely fast JSON parsing using SIMD instructions
  • Low memory usage and zero-copy parsing
  • Language bindings for multiple programming languages

Cons of simdjson

  • Limited to parsing and basic querying of JSON data
  • Requires CPU support for specific SIMD instructions
  • Less flexible for complex data transformations

Code Comparison

simdjson:

auto json = R"( {"x": 1, "y": 2} )"_padded;
ondemand::parser parser;
auto doc = parser.iterate(json);
double x = doc["x"];

serde_json:

let json = r#"{"x": 1, "y": 2}"#;
let parsed: Value = serde_json::from_str(json)?;
let x = parsed["x"].as_f64().unwrap();

Key Differences

  • simdjson focuses on high-performance parsing and basic querying
  • serde_json offers more comprehensive serialization/deserialization features
  • simdjson is primarily C++ with bindings, while serde_json is native Rust
  • serde_json integrates with Rust's powerful type system and traits
  • simdjson excels in scenarios requiring extremely fast JSON parsing

Both libraries have their strengths, with simdjson optimized for raw parsing speed and serde_json providing a more feature-rich, Rust-idiomatic approach to JSON handling.

9,335

Rust parser combinator framework

Pros of nom

  • More flexible parsing capabilities, suitable for various data formats beyond JSON
  • Allows for creating custom parsers with fine-grained control
  • Better performance for complex parsing tasks

Cons of nom

  • Steeper learning curve compared to serde_json's simpler API
  • Requires more manual implementation for parsing specific data structures
  • Less straightforward for simple JSON parsing tasks

Code Comparison

nom example:

use nom::{
  IResult,
  bytes::complete::tag,
  sequence::delimited
};

fn parens(input: &str) -> IResult<&str, &str> {
  delimited(tag("("), tag("abc"), tag(")"))(input)
}

serde_json example:

use serde_json::Value;

let data = r#"{"name": "John", "age": 30}"#;
let v: Value = serde_json::from_str(data)?;
println!("Name: {}", v["name"]);

nom is more verbose but offers greater control over parsing, while serde_json provides a simpler API for JSON-specific tasks. nom is better suited for complex parsing needs, whereas serde_json excels at straightforward JSON handling with less code.

8,997

Serialization framework for Rust

Pros of serde

  • Supports multiple data formats (JSON, YAML, TOML, etc.)
  • More flexible and extensible serialization/deserialization framework
  • Provides custom derive macros for automatic implementation

Cons of serde

  • Steeper learning curve due to its more complex architecture
  • Requires additional dependencies for specific formats (e.g., serde_json for JSON)

Code comparison

serde:

use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize)]
struct Person {
    name: String,
    age: u8,
}

json:

use serde_json::Value;

let person: Value = serde_json::from_str(r#"
    {"name": "John", "age": 30}
"#)?;

Summary

serde is a more comprehensive serialization framework that supports multiple formats, while json focuses specifically on JSON processing. serde offers greater flexibility and extensibility but may have a steeper learning curve. json is simpler to use for JSON-specific tasks but lacks support for other formats.

serde requires additional dependencies for specific formats, whereas json is self-contained for JSON processing. The code comparison illustrates serde's use of derive macros for automatic implementation, while json relies on a more manual approach to parsing JSON data.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Serde JSON   Build Status Latest Version Rustc Version 1.36+

Serde is a framework for serializing and deserializing Rust data structures efficiently and generically.


[dependencies]
serde_json = "1.0"

You may be looking for:

JSON is a ubiquitous open-standard format that uses human-readable text to transmit data objects consisting of key-value pairs.

{
    "name": "John Doe",
    "age": 43,
    "address": {
        "street": "10 Downing Street",
        "city": "London"
    },
    "phones": [
        "+44 1234567",
        "+44 2345678"
    ]
}

There are three common ways that you might find yourself needing to work with JSON data in Rust.

  • As text data. An unprocessed string of JSON data that you receive on an HTTP endpoint, read from a file, or prepare to send to a remote server.
  • As an untyped or loosely typed representation. Maybe you want to check that some JSON data is valid before passing it on, but without knowing the structure of what it contains. Or you want to do very basic manipulations like insert a key in a particular spot.
  • As a strongly typed Rust data structure. When you expect all or most of your data to conform to a particular structure and want to get real work done without JSON's loosey-goosey nature tripping you up.

Serde JSON provides efficient, flexible, safe ways of converting data between each of these representations.

Operating on untyped JSON values

Any valid JSON data can be manipulated in the following recursive enum representation. This data structure is serde_json::Value.

enum Value {
    Null,
    Bool(bool),
    Number(Number),
    String(String),
    Array(Vec<Value>),
    Object(Map<String, Value>),
}

A string of JSON data can be parsed into a serde_json::Value by the serde_json::from_str function. There is also from_slice for parsing from a byte slice &[u8] and from_reader for parsing from any io::Read like a File or a TCP stream.

use serde_json::{Result, Value};

fn untyped_example() -> Result<()> {
    // Some JSON input data as a &str. Maybe this comes from the user.
    let data = r#"
        {
            "name": "John Doe",
            "age": 43,
            "phones": [
                "+44 1234567",
                "+44 2345678"
            ]
        }"#;

    // Parse the string of data into serde_json::Value.
    let v: Value = serde_json::from_str(data)?;

    // Access parts of the data by indexing with square brackets.
    println!("Please call {} at the number {}", v["name"], v["phones"][0]);

    Ok(())
}

The result of square bracket indexing like v["name"] is a borrow of the data at that index, so the type is &Value. A JSON map can be indexed with string keys, while a JSON array can be indexed with integer keys. If the type of the data is not right for the type with which it is being indexed, or if a map does not contain the key being indexed, or if the index into a vector is out of bounds, the returned element is Value::Null.

When a Value is printed, it is printed as a JSON string. So in the code above, the output looks like Please call "John Doe" at the number "+44 1234567". The quotation marks appear because v["name"] is a &Value containing a JSON string and its JSON representation is "John Doe". Printing as a plain string without quotation marks involves converting from a JSON string to a Rust string with as_str() or avoiding the use of Value as described in the following section.

The Value representation is sufficient for very basic tasks but can be tedious to work with for anything more significant. Error handling is verbose to implement correctly, for example imagine trying to detect the presence of unrecognized fields in the input data. The compiler is powerless to help you when you make a mistake, for example imagine typoing v["name"] as v["nmae"] in one of the dozens of places it is used in your code.

Parsing JSON as strongly typed data structures

Serde provides a powerful way of mapping JSON data into Rust data structures largely automatically.

use serde::{Deserialize, Serialize};
use serde_json::Result;

#[derive(Serialize, Deserialize)]
struct Person {
    name: String,
    age: u8,
    phones: Vec<String>,
}

fn typed_example() -> Result<()> {
    // Some JSON input data as a &str. Maybe this comes from the user.
    let data = r#"
        {
            "name": "John Doe",
            "age": 43,
            "phones": [
                "+44 1234567",
                "+44 2345678"
            ]
        }"#;

    // Parse the string of data into a Person object. This is exactly the
    // same function as the one that produced serde_json::Value above, but
    // now we are asking it for a Person as output.
    let p: Person = serde_json::from_str(data)?;

    // Do things just like with any other Rust data structure.
    println!("Please call {} at the number {}", p.name, p.phones[0]);

    Ok(())
}

This is the same serde_json::from_str function as before, but this time we assign the return value to a variable of type Person so Serde will automatically interpret the input data as a Person and produce informative error messages if the layout does not conform to what a Person is expected to look like.

Any type that implements Serde's Deserialize trait can be deserialized this way. This includes built-in Rust standard library types like Vec<T> and HashMap<K, V>, as well as any structs or enums annotated with #[derive(Deserialize)].

Once we have p of type Person, our IDE and the Rust compiler can help us use it correctly like they do for any other Rust code. The IDE can autocomplete field names to prevent typos, which was impossible in the serde_json::Value representation. And the Rust compiler can check that when we write p.phones[0], then p.phones is guaranteed to be a Vec<String> so indexing into it makes sense and produces a String.

The necessary setup for using Serde's derive macros is explained on the Using derive page of the Serde site.

Constructing JSON values

Serde JSON provides a json! macro to build serde_json::Value objects with very natural JSON syntax.

use serde_json::json;

fn main() {
    // The type of `john` is `serde_json::Value`
    let john = json!({
        "name": "John Doe",
        "age": 43,
        "phones": [
            "+44 1234567",
            "+44 2345678"
        ]
    });

    println!("first phone number: {}", john["phones"][0]);

    // Convert to a string of JSON and print it out
    println!("{}", john.to_string());
}

The Value::to_string() function converts a serde_json::Value into a String of JSON text.

One neat thing about the json! macro is that variables and expressions can be interpolated directly into the JSON value as you are building it. Serde will check at compile time that the value you are interpolating is able to be represented as JSON.

let full_name = "John Doe";
let age_last_year = 42;

// The type of `john` is `serde_json::Value`
let john = json!({
    "name": full_name,
    "age": age_last_year + 1,
    "phones": [
        format!("+44 {}", random_phone())
    ]
});

This is amazingly convenient, but we have the problem we had before with Value: the IDE and Rust compiler cannot help us if we get it wrong. Serde JSON provides a better way of serializing strongly-typed data structures into JSON text.

Creating JSON by serializing data structures

A data structure can be converted to a JSON string by serde_json::to_string. There is also serde_json::to_vec which serializes to a Vec<u8> and serde_json::to_writer which serializes to any io::Write such as a File or a TCP stream.

use serde::{Deserialize, Serialize};
use serde_json::Result;

#[derive(Serialize, Deserialize)]
struct Address {
    street: String,
    city: String,
}

fn print_an_address() -> Result<()> {
    // Some data structure.
    let address = Address {
        street: "10 Downing Street".to_owned(),
        city: "London".to_owned(),
    };

    // Serialize it to a JSON string.
    let j = serde_json::to_string(&address)?;

    // Print, write to a file, or send to an HTTP server.
    println!("{}", j);

    Ok(())
}

Any type that implements Serde's Serialize trait can be serialized this way. This includes built-in Rust standard library types like Vec<T> and HashMap<K, V>, as well as any structs or enums annotated with #[derive(Serialize)].

Performance

It is fast. You should expect in the ballpark of 500 to 1000 megabytes per second deserialization and 600 to 900 megabytes per second serialization, depending on the characteristics of your data. This is competitive with the fastest C and C++ JSON libraries or even 30% faster for many use cases. Benchmarks live in the serde-rs/json-benchmark repo.

Getting help

Serde is one of the most widely used Rust libraries, so any place that Rustaceans congregate will be able to help you out. For chat, consider trying the #rust-questions or #rust-beginners channels of the unofficial community Discord (invite: https://discord.gg/rust-lang-community), the #rust-usage or #beginners channels of the official Rust Project Discord (invite: https://discord.gg/rust-lang), or the #general stream in Zulip. For asynchronous, consider the [rust] tag on StackOverflow, the /r/rust subreddit which has a pinned weekly easy questions post, or the Rust Discourse forum. It's acceptable to file a support issue in this repo, but they tend not to get as many eyes as any of the above and may get closed without a response after some time.

No-std support

As long as there is a memory allocator, it is possible to use serde_json without the rest of the Rust standard library. Disable the default "std" feature and enable the "alloc" feature:

[dependencies]
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }

For JSON support in Serde without a memory allocator, please see the serde-json-core crate.


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.