3 unstable releases

0.8.1 Jan 26, 2024
0.8.0 Oct 19, 2023
0.7.0 Jul 6, 2023
0.2.2 Mar 22, 2023
0.1.1 Jan 22, 2023

#35 in FFI

Download history 120/week @ 2024-01-19 89/week @ 2024-01-26 504/week @ 2024-02-02 150/week @ 2024-02-09 211/week @ 2024-02-16 415/week @ 2024-02-23 398/week @ 2024-03-01 216/week @ 2024-03-08 178/week @ 2024-03-15 156/week @ 2024-03-22 268/week @ 2024-03-29 1062/week @ 2024-04-05 568/week @ 2024-04-12 613/week @ 2024-04-19 372/week @ 2024-04-26 455/week @ 2024-05-03

2,246 downloads per month
Used in pks

MIT license

55KB
807 lines

serde_magnus

serde_magnus converts between Rust and Ruby data structures using Serde and Magnus.

Quick links

Usage

The serde_magnus::serialize function converts from a Rust type implementing the serde::Serialize trait into a Ruby equivalent.

use serde::{Serialize, Deserialize};
use magnus::{eval, Value};
use serde_magnus::serialize;

#[derive(Serialize, Deserialize, PartialEq, Debug)]
struct Post {
    title: String,
    content: String,
    author: Author,
    tags: Vec<String>
}

#[derive(Serialize, Deserialize, PartialEq, Debug)]
struct Author {
    name: String,
    email_address: String
}

let post = Post {
    title: "Spring carnival planning update".into(),
    content: "Here's what's new.".into(),
    author: Author {
        name: "Martha".into(),
        email_address: "martha@example.com".into()
    },
    tags: vec![
        "carnival".into(),
        "update".into()
    ]
};

let post: Value = serialize(&post)?;

assert!(eval!(
    r#"
    post == {
      title: "Spring carnival planning update",
      content: "Here's what's new.",
      author: {
        name: "Martha",
        email_address: "martha@example.com"
      },
      tags: ["carnival", "update"]
    }
    "#,
    post
)?);

serde_magnus::deserialize converts from a Ruby value to a Rust type implementing serde::Deserialize.

use magnus::RHash;
use serde_magnus::deserialize;

let post: RHash = eval!(r#"
  {
    title: "Spring carnival planning update",
    content: "Here's what's new.",
    author: {
      name: "Martha",
      email_address: "martha@example.com"
    },
    tags: ["carnival", "update"]
  }
"#)?;

let post: Post = deserialize(post)?;

assert_eq!(
    Post {
        title: "Spring carnival planning update".into(),
        content: "Here's what's new.".into(),
        author: Author {
            name: "Martha".into(),
            email_address: "martha@example.com".into(),
        },
        tags: vec![
            "carnival".into(),
            "update".into()
        ]
    },
    post
);

Requirements

serde_magnus requires Rust 1.65+ and Ruby 3.0+.

License

serde_magnus is released under the terms of the MIT License. See LICENSE for details.

Dependencies

~1.5–4.5MB
~73K SLoC