A TOML 1.0 parser and serializer for MoonBit
type Lexerpub enum Value {
String(String)
Integer(Int64)
Float(Double)
Boolean(Bool)
OffsetDateTime(OffsetDateTime)
LocalDateTime(LocalDateTime)
LocalDate(LocalDate)
LocalTime(LocalTime)
Array(Array[Value])
Table(Map[String, Value])
} derive(Debug)A TOML 1.0 parser and serializer for MoonBit