facet-toml 0.46.0

TOML serialization for facet using the new format architecture - successor to facet-toml
Documentation

facet-toml

TOML serialization for facet using the new format architecture.

This is the successor to facet-toml, using the unified facet-format traits.

Deserialization

use facet::Facet;
use facet_toml::from_str;

#[derive(Facet, Debug)]
struct Config {
    name: String,
    port: u16,
}

let toml = r#"
name = "my-app"
port = 8080
"#;

let config: Config = from_str(toml).unwrap();
assert_eq!(config.name, "my-app");
assert_eq!(config.port, 8080);