1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
TOML serialization for facet using the new format architecture.
This is the successor to `facet-toml`, using the unified `facet-format` traits.
```rust
use facet::Facet;
use facet_toml::from_str;
struct Config {
}
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);
```