#messagepack #toml #json

serdeconv

This crate provides convenient traits and functions for converting between TOML/JSON/MessagePack strings and serializable values

5 unstable releases

Uses old Rust 2015

0.4.1 Mar 31, 2023
0.4.0 May 5, 2020
0.3.0 Jun 15, 2017
0.2.1 May 14, 2017
0.2.0 May 6, 2017

#1804 in Encoding

Download history 191/week @ 2024-07-21 212/week @ 2024-07-28 228/week @ 2024-08-04 269/week @ 2024-08-11 262/week @ 2024-08-18 279/week @ 2024-08-25 253/week @ 2024-09-01 328/week @ 2024-09-08 167/week @ 2024-09-15 247/week @ 2024-09-22 193/week @ 2024-09-29 148/week @ 2024-10-06 196/week @ 2024-10-13 179/week @ 2024-10-20 220/week @ 2024-10-27 236/week @ 2024-11-03

853 downloads per month
Used in 6 crates

MIT license

21KB
343 lines

serdeconv

Build Status License: MIT

This crate provides convenient traits and functions for converting between TOML/JSON/MessagePack strings and serializable values.

This is highly depends on the serde crate.

Documentation


lib.rs:

This crate provides convenient traits and functions for converting between TOML/JSON/MessagePack strings and serializable values.

This is highly depends on the serde crate.

Examples

Converts from a TOML string to a serializable value:

extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serdeconv;

use serdeconv::FromToml;

// Defines a deserializable struct.
#[derive(Deserialize)]
struct Foo {
    bar: String,
    baz: usize
}
impl FromToml for Foo {}

// Converts from the TOML string to a `Foo` value.
let toml = r#"
bar = "aaa"
baz = 123
"#;
let foo = Foo::from_toml_str(toml).unwrap();
assert_eq!(foo.bar, "aaa");
assert_eq!(foo.baz, 123);

Dependencies

~2.3–3MB
~67K SLoC