toml-scaffold 0.4.0

Generate commented TOML scaffolds from Rust structs and values
Documentation
1
2
3
4
5
6
7
8
9
# Application name
name = "myapp"
# Database configuration (inline format)
database = { host = "localhost", port = 5432 }
# Server configuration (dotted format)
# Server host
server.host = "0.0.0.0"
# Server port
server.port = 8080