82 releases (34 breaking)
Uses new Rust 2024
| new 0.46.1 | May 6, 2026 |
|---|---|
| 0.44.7 | Apr 14, 2026 |
| 0.44.5 | Mar 16, 2026 |
| 0.41.0 | Dec 31, 2025 |
| 0.25.18 | Jul 3, 2025 |
#2868 in Parser implementations
1,943 downloads per month
Used in 43 crates
(10 directly)
580KB
11K
SLoC
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);
Dependencies
~4–5.5MB
~99K SLoC